Guest User

Untitled

a guest
Jul 15th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2.  
  3. // ...
  4.  
  5. //delete all options
  6. function my_plugin_uninstall_options() {
  7. global $wpdb;
  8.  
  9. $users = $wpdb->get_col( 'SELECT `'. $wpdb->users.ID .'` FROM `'. $wpdb->users .'`' );
  10. foreach ( $users as $user_id )
  11. delete_user_option( $user_id, 'option_two' );
  12.  
  13. delete_option( 'option_one' );
  14. delete_option( 'option_two' ); // it is used as a fallback
  15. }
  16.  
  17. my_plugin_uninstall_options();
  18.  
  19. // ...
  20.  
  21. ?>
Add Comment
Please, Sign In to add comment