bbp_is_forum_category( int $forum_id )

Is the forum a category?

Description

Parameters

$forum_id

(int) (Optional) Forum id

Return

(bool) Whether the forum is a category or not

Source

File: bp-forums/forums/template.php

function bbp_is_forum_category( $forum_id = 0 ) {
	$forum_id = bbp_get_forum_id( $forum_id );
	$type     = bbp_get_forum_type( $forum_id );
	$retval   = ( !empty( $type ) && 'category' === $type );

	return (bool) apply_filters( 'bbp_is_forum_category', (bool) $retval, $forum_id );
}

Changelog

Changelog
Version Description
bbPress (r2746) 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.