WordPress and buddypress programming

Add a User to a particular group

Viewing 1 reply thread
  • Author
    Posts
    • #2148
      michael mc
      Keymaster
      @michael

      Add a User to a particular group when User account is activated

      add_action( 'bp_core_activated_user', 'bpdev_join_group_on_signup');
      function bpdev_join_group_on_signup( $user_id ){
          $group_id = 3;//change it to the group id you want the user to join
          groups_join_group( $group_id, $user_id );
      }
    • #2149
      michael mc
      Keymaster
      @michael

      not tested yet

Viewing 1 reply thread
  • You must be logged in to reply to this topic.