Created
November 7, 2017 04:52
-
-
Save tannerm/7bf7d65484f76fd323b0a10ac9364ece to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'wpmu_new_user', function( $user_id ) { | |
add_user_to_blog( 19, $user_id, 'participant' ); // add user to forum site as participant | |
// subscribe user to forum | |
$forum_id = 0; // update the forum id | |
switch_to_blog( 19 ); // switch to the correct site | |
bbp_add_user_forum_subscription( $user_id, $forum_id ); // add user to the forum | |
restore_current_blog(); // switch back to the original site | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment