bp_total_follow_counts (数组args美元='')
获取用户的总关注者和总关注数。
描述
参数
- args美元
-
(数组)(可选)数组的参数。
- “user_id”
(int)获取跟踪计数的用户ID。
默认值:“
- “user_id”
返回
(数组)[跟随者=> int,跟随者=> int]
源
文件:bp-activity / bp-activity-functions.php
函数bp_total_follow_counts($args = ") {$r = wp_parse_args($args, array('user_id' => bp_loggedin_user_id());$ count = false;/*先获取本地缓存的值*/ /登录用户if ($r['user_id'] == bp_loggedin_user_id() && is_user_logged_in());如果(!$bp->loggedin_user->total_follow_counts) {$count = $bp->loggedin_user->total_follow_counts; $count = $bp->loggedin_user->total_follow_counts;} // else ($r['user_id'] == bp_displayed_user_id() && bp_is_user()) {global $bp;如果(!$bp->displayed_user->total_follow_counts) {$count = $bp->displayed_user->total_follow_counts;}} //没有缓存的值,因此查询它if ($count === false) {$count = BP_Activity_Follow::get_counts($r['user_id']);} return apply_filters('bp_total_follow_counts', $count, $r['user_id']); }
更新日志
版本 | 描述 |
---|---|
BuddyBoss 1.0.0 | 介绍了。 |