BP_Core_BP_Nav_BackCompat::get_组件(混合的$offset='')
获取导航项所属的组件。
描述
根据偏移量,我们使用以下启发式方法猜测项目属于哪个组件:
- 如果这是一个组,并且偏移量与当前组的slug相同,则它是一个组导航项。
- 否则,它是会员导航项目。
参数
- $offset
-
(混合的)(可选)数组偏移量。
默认值:“”
回来
(字符串|数组)
来源
文件:bp-core/classes/class-bp-core-bp-nav-backcompat.php
公共函数get_component($offset=''){if(!isset($this->component)){if(bp_处于活动状态('groups')&&&$offset==bp_get_current_group_slug()){$this->component='groups';}否则{$this->component='members';}返回$this->component;}
变更日志
版本 | 描述 |
---|---|
BuddyPress 2.6.0 | 介绍。 |