bp_activity_get_current_context ()
获取当前活动上下文。
描述
“context”是当前视图类型,大致对应于当前组件。使用此上下文来确定应该为筛选下拉列表列出哪些活动操作。
返回
(字符串)活动背景。'member', 'member_groups', 'group', 'activity'。
源
文件:bp-activity / bp-activity-functions.php
function bp_activity_get_current_context(){//在成员页面上,默认为'member',除非这是用户的Groups活动。If (bp_is_user()) {If (bp_is_active('groups') && bp_is_current_action(bp_get_groups_slug())) {$context = 'member_groups';} else {$context = '成员';} //在单独的组页面上,默认为'group'。} elseif (bp_is_active('groups') && bp_is_group()) {$context = '组';// 'activity'在其他地方。} else {$context = 'activity';}返回$上下文;}
更新日志
版本 | 描述 |
---|---|
BuddyPress 2.8.0 | 介绍了。 |