bbp_forum_topic_count
Description
The ‘bbp_forum_topic_count’ function is used to display the total topic count of a forum including sub forums.
How to use it
1 | <?php bbp_forum_topic_count( $forum_id , $total_count ); ?> |
$forum_id (optional) – Returns count for particular forum id
$total_count (optional) – Returns the total topic count with true including sub forums or just topics within that forum with false
Uses bbp_get_forum_topic_count()
Sample code example
1 | <?php bbp_forum_topic_count(); ?> |
Displays the total count of all topics within the current forum and sub forums
1 | <?php bbp_forum_topic_count( '1' ); ?> |
Displays the total count of all topics within the forum with an ID of 1
1 | <?php bbp_forum_topic_count( '' , false ); ?> |
Displays the count of topics within the current forum not including topics in sub forums