verygoodplugins

Untitled

Jun 11th, 2021 (edited)
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function custom_update_groups( $user_id, $user_meta ) {
  2.  
  3.     if ( in_array( 'Group Name', $user_meta['buddypress_groups'] ) && ! groups_is_user_member( $user_id, 123 ) ) {
  4.         groups_join_group( 123, $user_id );
  5.     }
  6.  
  7. }
  8.  
  9. add_action( 'wpf_user_updated', 'custom_update_groups', 10, 2 );
Add Comment
Please, Sign In to add comment