bbp_is_single_forum()

Viewing a single forum

Description

Return

(bool)

Source

File: bp-forums/common/template.php

174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
function bbp_is_single_forum() {
 
    // Assume false
    $retval = false;
 
    // Edit is not a single forum
    if ( bbp_is_forum_edit() )
        return false;
 
    // Single and a match
    if ( is_singular( bbp_get_forum_post_type() ) || bbp_is_query_name( 'bbp_single_forum' ) )
        $retval = true;
 
    return (bool) apply_filters( 'bbp_is_single_forum', $retval );
}

Changelog

Changelog
Version Description
bbPress (r3338) Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.