Guest User

Untitled

a guest
Jan 22nd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function test_delete() {
  2. if( !current_user_can( 'activate_plugins' ) )
  3. return;
  4. check_admin_referer( 'bulk-plugins' );
  5.  
  6. if( __FILE__ != WP_UNINSTALL_PLUGIN )
  7. return;
  8.  
  9. delete_option( 'test_option' );
  10. }
  11.  
  12. register_uninstall_hook( __FILE__, 'test_delete' );
Add Comment
Please, Sign In to add comment