bp_blogs_total_blogs_for_user (intuser_id美元)
获取BP针对特定用户跟踪的博客总数。
描述
参数
- user_id美元
-
(int)(必需)要查询的用户ID。默认值:在用户界面中显示的用户。否则,登录用户。
返回
(int)$count用户的博客总数。
源
文件:bp-blogs / bp-blogs-functions.php
函数bp_blogs_total_blogs_for_user($user_id = 0) {if (empty($user_id)) {$user_id = (bp_displayed_user_id()) ?bp_displayed_user_id (): bp_loggedin_user_id ();} //没有用户ID?不要试图查看缓存。If(空($user_id)){返回0;} $count = wp_cache_get('bp_total_blogs_for_user_'。user_id美元,“英国石油公司”);if (false === $count) {$count = BP_Blogs_Blog::total_blog_count_for_user($user_id);wp_cache_set(“bp_total_blogs_for_user_”。$user_id, $count, 'bp'); } return $count; }
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.2.0 | 介绍了。 |