Advertisement
verygoodplugins

Untitled

Aug 6th, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. function maybe_create_affiliate( $user_id, $user_tags ) {
  2.  
  3.     if ( in_array( 'Tag Name', $user_tags ) && ! affwp_is_affiliate( $user_id ) ) {
  4.  
  5.         $args = array(
  6.             'user_id' => $user_id,
  7.         );
  8.  
  9.         affwp_add_affiliate( $args );
  10.  
  11.     }
  12.  
  13. }
  14.  
  15. add_action( 'wpf_tags_modified', 'maybe_create_affiliate', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement