Skip to content

Instantly share code, notes, and snippets.

@mateusneves
Created March 18, 2015 21:06
Show Gist options
  • Save mateusneves/196595da1a5eb1ba1348 to your computer and use it in GitHub Desktop.
Save mateusneves/196595da1a5eb1ba1348 to your computer and use it in GitHub Desktop.
Activate registered users in the members list of the Buddypress
// Execute only one time, then remove from your code
$all_users = get_users();
foreach( $all_users as $user ):
bp_update_user_last_activity( $user->ID );
endforeach;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment