bp_get_new_group_enable_forum()
Description Description
Return Return
(int)
Source Source
File: bp-groups/bp-groups-template.php
function bp_get_new_group_enable_forum() {
$bp = buddypress();
$forum = isset( $bp->groups->current_group->enable_forum )
? $bp->groups->current_group->enable_forum
: false;
/**
* Filters whether or not to enable forums for the new group.
*
* @since 1.1.0
*
* @param int $forum Whether or not to enable forums.
*/
return (int) apply_filters( 'bp_get_new_group_enable_forum', $forum );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.1.0 | Introduced. |