bp_friends_get_profile_stats (|字符串数组args美元=”)
返回用户个人资料中的好友数。
描述
参数
- args美元
-
(数组|字符串)(可选)前| | user_id之后。
默认值:“
返回
(字符串)用于统计输出的HTML。
源
文件:bp-friends / bp-friends-template.php
function bp_friends_get_profile_stats($args = "){//解析args。(r = bp_parse_args美元args,阵列('前' = > ' <李类=“bp-friends-profile-stats”>,'后' = > '李< / > ',' user_id ' = > bp_displayed_user_id(),“朋友”= > 0,”输出 ' => '' ), ' friends_get_profile_stats”);//允许完全重载输出。if (empty($r['output']){//只有传递了用户ID才继续。如果(!empty($r['user_id']){//获取用户的朋友。如果($r['user_id'])) {$r[' '] = absint(friends_get_total_friend_count($r['user_id']));} //如果有友元,显示一些格式化的输出。$r['output'] = $r['before']。Sprintf (_n('%s connection', '%s connections', $r['friends'], 'buddyboss'), '')。 $r['friends'] . '' ) . $r['after']; } } /** * Filters the number of friends in user's profile. * * @since BuddyPress 2.0.0 * * @param string $value Formatted string displaying total friends count. * @param array $r Array of arguments for string formatting and output. */ return apply_filters( 'bp_friends_get_profile_stats', $r['output'], $r ); }
更新日志
版本 | 描述 |
---|---|
BuddyPress 2.0.0 | 介绍了。 |