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

Output total reply count of a forum


Description Description


Parameters 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


Top ↑

Source Source

File: includes/forums/template.php

function bbp_forum_reply_count( $forum_id = 0, $total_count = true, $integer = false ) {
	echo bbp_get_forum_reply_count( $forum_id, $total_count, $integer );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.