bp_get_new_group_status()
Description Description
Return Return
(mixed|void)
Source Source
File: bp-groups/bp-groups-template.php
function bp_get_new_group_status() {
$bp = buddypress();
$status = isset( $bp->groups->current_group->status )
? $bp->groups->current_group->status
: 'public';
/**
* Filters the new group status.
*
* @since 1.1.0
*
* @param string $status Status for the new group.
*/
return apply_filters( 'bp_get_new_group_status', $status );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.1.0 | Introduced. |