Advertisement
vapvarun

Display all registered members at directory

Dec 9th, 2020
819
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. //You can use the following code inside the child theme, it will add a timestamp for all users and remove code once all member starts displaying in your member list.
  2.  
  3. function buddypress_add_last_activity() {
  4.   $members =  get_users( 'fields=ID' );
  5.   foreach ( $members as $user_id ) {
  6.         bp_update_user_last_activity( $user_id, bp_core_current_time() );
  7.   }
  8.  
  9. }
  10. add_action('bp_init', 'buddypress_add_last_activity' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement