groups_get_total_member_count( int $group_id )
Get the member count for a group.
Description Description
Parameters Parameters
- $group_id
-
(Required) Group ID.
Return Return
(int) Count of confirmed members for the group.
Source Source
File: bp-groups/bp-groups-functions.php
function groups_get_total_member_count( $group_id ) {
return BP_Groups_Group::get_total_member_count( $group_id );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.2.3 | Introduced. |