Advertisement
verygoodplugins

Untitled

Feb 24th, 2020
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. function fasting_and_fitness( $user_id, $user_tags ) {
  2.  
  3.     if ( wpf_has_tag( 'Fasting System', $user_id ) && wpf_has_tag( 'Fitness System', $user_id ) && ! wpf_has_tag( 'Fasting And Fitness System', $user_id ) ) {
  4.  
  5.         $tag_id = wp_fusion()->user->get_tag_id( 'Fasting And Fitness System' );
  6.  
  7.         wp_fusion()->user->apply_tags( array( $tag_id ), $user_id );
  8.  
  9.     }
  10.  
  11. }
  12.  
  13. add_action( 'wpf_tags_modified', 'fasting_and_fitness', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement