bbp_include_all_forums
bbp_include_all_forums
Appears in: bbpress.2.5.14, bbpress.2.6.0, bbpress.2.6.1, bbpress.2.6.11, bbpress.2.6.12, bbpress.2.6.2, bbpress.2.6.3, bbpress.2.6.4, bbpress.2.6.5, bbpress.2.6.6, bbpress.2.6.9
Hook Type: filter
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_include_all_forums') is found 1 times:
- /includes/forums/functions.php line 230222982299230023012302230323042305230623072308
*/
function
bbp_pre_get_posts_normalize_forum_visibility(
$posts_query
= null ) {
// Bail if all forums are explicitly allowed
if
( true === apply_filters(
'bbp_include_all_forums'
, false,
$posts_query
) ) {
return
;
}
// Bail if $posts_query is not an object or of incorrect class
if
( !
is_object
(
$posts_query
) || !
is_a
(
$posts_query
,
'WP_Query'
) ) {
return
;