Advertisement
verygoodplugins

Untitled

Apr 9th, 2018
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_action('wpf_tags_modified', 'my_wpf_delete_user', 5, 2);
  2.  
  3. function my_wpf_delete_user($user_id, $user_tags) {
  4.    
  5.     if( in_array( 'TAG NAME', $user_tags ) && ! user_can( $user_id, 'manage_options' ) ) {
  6.         wp_delete_user( $user_id );
  7.         wp_die();
  8.     }
  9.    
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement