19 lines
495 B
PHP
19 lines
495 B
PHP
<?php
|
|
/**
|
|
* Uninstall routine for Hello (by ROBOTSTXT).
|
|
*
|
|
* Plugin data is preserved by default. Removal only happens when the user
|
|
* explicitly enabled the "Delete plugin data on uninstall" setting.
|
|
*
|
|
* @package ROBOTSTXT_Hello
|
|
*/
|
|
|
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
|
exit;
|
|
}
|
|
|
|
if ( '1' === get_option( 'robotstxt_hello_delete_data', '' ) ) {
|
|
delete_metadata( 'user', 0, 'robotstxt_hello_dismissed_manager_notice', '', true );
|
|
}
|
|
|
|
delete_option( 'robotstxt_hello_delete_data' );
|