Advertisement
verygoodplugins

Untitled

Feb 20th, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. add_action('wpf_tags_modified', 'my_wpf_delete_user', 10, 2);
  2.  
  3. function my_wpf_delete_user($user_id, $user_tags) {
  4.  
  5.     $contact_id = get_user_meta( $user_id, 'infusionsoft_contact_id', true );
  6.    
  7.     if( empty( $contact_id ) || ! wp_fusion()->user->has_tag('GFTB Full Membership - Activated', $user_id) && !user_can($user_id, 'manage_options')) {
  8.         wp_delete_user( $user_id );
  9.     }
  10.    
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement