bp_get_current_group_name ()
返回当前组的名称。
描述
返回
(字符串)当前组的名称(如果有的话)。
源
文件:bp-groups / bp-groups-template.php
函数bp_get_current_group_name() {$current_group = group_get_current_group ();$current_name = bp_get_group_name($current_group);/** *过滤当前组的名称。* * @since BuddyPress 1.2.0 * * @param string $current_name当前组名。* @param object $current_group保存当前组的实例。*/返回apply_filters('bp_get_current_group_name', $current_name, $current_group);}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.5.0 | 介绍了。 |