Advertisement
verygoodplugins

Untitled

Jun 5th, 2022
961
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. function remove_all_tags( $changes, $user_id ) {
  2.  
  3.     if ( did_action( 'user_register' ) ) {
  4.         return;
  5.     }
  6.  
  7.     $tags = wpf_get_tags( $user_id );
  8.     wp_fusion()->user->remove_tags( $tags, $user_id );
  9.  
  10. }
  11.  
  12. add_action( 'um_before_update_profile', 'remove_all_tags', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement