bp_get_total_group_count_for_user( int $user_id )
Return the total number of groups a user belongs to.
Description
Filtered by bp_core_number_format() by default
Parameters
- $user_id
-
(Required) User ID to get group membership count.
Return
(string)
Source
File: bp-groups/bp-groups-template.php
function bp_get_total_group_count_for_user( $user_id = 0 ) {
$count = groups_total_groups_for_user( $user_id );
/**
* Filters the total number of groups a user belongs to.
*
* @since BuddyPress 1.2.0
*
* @param int $count Total number of groups for the user.
* @param int $user_id ID of the user being checked.
*/
return apply_filters( 'bp_get_total_group_count_for_user', $count, $user_id );
}
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.