$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>How can i delete options on plugin uninstallation?|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

How can i delete options on plugin uninstallation?

matteradmin9PV0评论

I want to delete option from database when plugin uninstall. It's name is test_option. I am using this code but doesn't work. Where is problem?

function test_delete() {
    if( !current_user_can( 'activate_plugins' ) )
        return;
    check_admin_referer( 'bulk-plugins' );

    if( __FILE__ != WP_UNINSTALL_PLUGIN )
        return;

    delete_option( 'test_option' );
}

register_uninstall_hook( __FILE__, 'test_delete' );

I want to delete option from database when plugin uninstall. It's name is test_option. I am using this code but doesn't work. Where is problem?

function test_delete() {
    if( !current_user_can( 'activate_plugins' ) )
        return;
    check_admin_referer( 'bulk-plugins' );

    if( __FILE__ != WP_UNINSTALL_PLUGIN )
        return;

    delete_option( 'test_option' );
}

register_uninstall_hook( __FILE__, 'test_delete' );
Share Improve this question asked Jan 22, 2019 at 17:55 wpdevwpdev 5492 gold badges13 silver badges28 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

This will give you the option to register your unistall hook during plugin activation.

function myplugin_activation_callback(){
    register_uninstall_hook( __FILE__, 'myplugin_uninstall_callback' );
}
register_activation_hook( __FILE__, 'myplugin_activation_callback' );

function myplugin_uninstall_callback(){

    //Perform your uninstall operations here 
    delete_option('test_option');

}  

However, the simplest way is to use an uninstall.php file with the following codes:

if (!defined('WP_UNINSTALL_PLUGIN')) {
    die;
}

//Perform your uninstall operations here 
delete_option('test_option');  

It's not recommended to use both at the same time.

Post a comment

comment list (0)

  1. No comments so far