Advertisement
verygoodplugins

Untitled

Jun 30th, 2021
797
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. function upgraded_subscription( $type, $sub ) {
  2.  
  3.     $settings = get_post_meta( $sub->product_id, 'wpf-settings-memberpress', true );
  4.  
  5.     if ( ! empty( $settings['apply_tags_upgraded'] ) ) {
  6.         wp_fusion()->user->apply_tags( $settings['apply_tags_upgraded'], $sub->user_id );
  7.     }
  8.  
  9. }
  10.  
  11. add_action( 'mepr-upgraded-sub', 'upgraded_subscription', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement