12 lines
207 B
PHP
12 lines
207 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Triggers during plugin uninstall
|
||
|
*
|
||
|
* @package LBRYPress
|
||
|
*/
|
||
|
|
||
|
// if uninstall.php is not called by WordPress, die
|
||
|
defined('WP_UNINSTALL_PLUGIN') || die();
|
||
|
|
||
|
// TODO: create uninstall procedures
|