bbp_get_user_post_count (intuser_id美元,布尔美元整数=假)
返回用户的总发帖数
描述
参数
- user_id美元
-
(int)(必需)
- 美元整数
-
(布尔)(可选)是否对结果进行格式化
默认值:假
返回
(字符串)
源
function bbp_get_user_post_count($user_id = 0, $integer = false){//验证用户id $user_id = bbp_get_user_id($user_id);If (empty($user_id))返回false;$topics = bbp_get_user_topic_count($user_id, true);$回复= bbp_get_user_reply_count($user_id, true);$count = (int) $topics + $replies;$filter = (true === $integer) ?“bbp_get_user_post_count_int”:“bbp_get_user_post_count”;返回apply_filters($filter, $count, $user_id);}
更新日志
版本 | 描述 |
---|---|
bbPress (r3632) | 介绍了。 |