groups_get_total_group_count ()
获取站点的总组数。
描述
返回
(int)
源
文件:bp-groups / bp-groups-functions.php
函数group_get_total_group_count () {$count = wp_cache_get('bp_total_group_count', 'bp');if (false === $count) {$count = bp_group_group::get_total_group_count();Wp_cache_set ('bp_total_group_count', $count, 'bp');}返回$计数;}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.2.0 | 介绍了。 |