bbp_get_topic_post_count (inttopic_id美元,布尔美元整数=假)
返回一个主题的总帖子数
描述
参数
- topic_id美元
-
(int)(可选)主题id
- 美元整数
-
(布尔)(可选)是否对结果进行格式化
默认值:假
返回
(int)文章数
源
文件:bp-forums /主题/ template.php
函数bbp_get_topic_post_count($topic_id = 0, $integer = false) {$topic_id = bbp_get_topic_id($topic_id);$回复= (int) get_post_meta($topic_id, '_bbp_reply_count', true) + 1;$filter = (true === $integer) ?“bbp_get_topic_post_count_int”:“bbp_get_topic_post_count”;返回apply_filters($filter, $replies, $topic_id);}
更新日志
版本 | 描述 |
---|---|
bbPress (r2954) | 介绍了。 |