groups_screen_group_members()
Handle the display of a group’s Members page.
Description
Source
File: bp-groups/screens/single/members.php
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | function groups_screen_group_members() { if ( ! bp_is_single_item() || ! bp_is_current_action( 'members' ) ) return false; if ( bp_action_variables() ) return false; $bp = buddypress(); // Refresh the group member count meta. groups_update_groupmeta( $bp ->groups->current_group->id, 'total_member_count' , groups_get_total_member_count( $bp ->groups->current_group->id ) ); /** * Fires before the loading of a group's Members page. * * @since BuddyPress 1.0.0 * * @param int $id ID of the group whose members are being displayed. */ do_action( 'groups_screen_group_members' , $bp ->groups->current_group->id ); bp_core_redirect( bp_get_group_permalink( groups_get_current_group() ) . 'members/all-members/' ); } |
Changelog
Version | Description |
---|---|
BuddyPress 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.