Advertisement
verygoodplugins

Untitled

Jun 7th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. function my_tags_applied( $user_id, $tags ) {
  2.    
  3.     if( in_array( 123, $tags ) ) {
  4.         echo '123 was applied';
  5.     }
  6. }
  7.  
  8. add_action( 'wpf_tags_applied', 'my_tags_applied', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement