bbp_forum_post_count
Output total post count of a forum.
Description
bbp_forum_post_count( (int) $forum_id = 0, (constant) $total_count = true, (bool) $integer = false );
Parameters (3)
- 0. $forum_id — Optional. (int)
- Forum id
- 1. $total_count — Optional. (constant) =>
true
- To get the total count or normal count?
- 2. $integer — Optional. (bool) =>
false
- Whether or not to format the result
Usage
if ( !function_exists( 'bbp_forum_post_count' ) ) { require_once ABSPATH . PLUGINDIR . 'bbpress/includes/forums/template.php'; } // Optional. Forum id $forum_id = -1; // Optional. To get the total count or normal count? $total_count = true; // Optional. Whether or not to format the result $integer = false; // NOTICE! Understand what this does before running. $result = bbp_forum_post_count($forum_id, $total_count, $integer);
Defined (1)
The function is defined in the following location(s).
- /includes/forums/template.php
- function bbp_forum_post_count( $forum_id = 0, $total_count = true, $integer = false ) {
- echo bbp_get_forum_post_count( $forum_id, $total_count, $integer );
- }