Created
March 18, 2015 21:06
-
-
Save mateusneves/196595da1a5eb1ba1348 to your computer and use it in GitHub Desktop.
Activate registered users in the members list of the Buddypress
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
// 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