bp_is_group_members()
Is the current page a group’s Members page?
Description Description
Return Return
(bool) True if the current page is part of a group's Members page.
Source Source
File: bp-core/bp-core-template.php
function bp_is_group_members() {
$retval = false;
if ( bp_is_single_item() && bp_is_groups_component() && bp_is_current_action( 'members' ) ) {
$retval = true;
}
if ( bp_is_group_home() && ! bp_is_active( 'activity' ) && ! bp_is_group_custom_front() ) {
$retval = true;
}
return $retval;
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.1.0 | Introduced. |