Skip to content

Instantly share code, notes, and snippets.

@imjjss
Created October 27, 2012 05:04
Show Gist options
  • Save imjjss/3963013 to your computer and use it in GitHub Desktop.
Save imjjss/3963013 to your computer and use it in GitHub Desktop.
Automatically add new users to a group
function automatic_group_membership( $user_id ) {
if( !$user_id ) return false;
groups_accept_invite( $user_id, <# group ID #> );
}
add_action( 'bp_core_activated_user', 'automatic_group_membership' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment