Advertisement
verygoodplugins

Untitled

Nov 25th, 2019
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. function my_wpf_status_tagging( $order_id ) {
  2.  
  3.     if ( ! function_exists( 'wp_fusion' ) ) {
  4.         return;
  5.     }
  6.  
  7.     $order   = wc_get_order( $order_id );
  8.     $user_id = $order->get_user_id();
  9.  
  10.     wp_fusion()->user->apply_tags( array( 'TAG NAME' ), $user_id );
  11.  
  12. }
  13.  
  14. add_action( 'woocommerce_order_status_completed', 'my_wpf_status_tagging' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement