bbp_get_forum_post_count( int $forum_id, bool $total_count = true, boolean $integer = false )

Return total post count of a forum

Description

Parameters

$forum_id

(Optional) Forum id

$total_count

(Optional) To get the total count or normal count?

Default value: true

$integer

(Optional) Whether or not to format the result

Default value: false

Return

(int) Forum post count

Source

File: bp-forums/forums/template.php

1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
function bbp_get_forum_post_count( $forum_id = 0, $total_count = true, $integer = false ) {
    $forum_id = bbp_get_forum_id( $forum_id );
    $topics   = bbp_get_forum_topic_count( $forum_id, $total_count, true );
    $meta_key = empty( $total_count ) ? '_bbp_reply_count' : '_bbp_total_reply_count';
    $replies  = (int) get_post_meta( $forum_id, $meta_key, true );
    $retval   = $replies + $topics;
    $filter   = ( true === $integer ) ? 'bbp_get_forum_post_count_int' : 'bbp_get_forum_post_count';
 
    return apply_filters( $filter, $retval, $forum_id );
}

Changelog

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