Advertisement
verygoodplugins

Untitled

Nov 28th, 2022
776
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 1 0
  1. function test_function( $user_id ) {
  2.  
  3.     $result = bp_set_member_type( $user_id, 'rwi-member' );
  4.  
  5.     if ( false === $result ) {
  6.         wp_die( 'ERROR - invalid type' );
  7.     }
  8.  
  9. }
  10.  
  11. add_action( 'user_register', 'test_function' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement