bp_nouveau_get_blogs_filters (字符串美元的上下文='')
获取blog组件的下拉过滤器
描述
参数
- 美元的上下文
-
(字符串)(可选)“目录”或“用户”
默认值:“
返回
(数组)过滤器
源
文件:bp-templates / bp-nouveau / /博客/显然也包括
函数bp_nouveau_get_blogs_filters($context = ") {if (empty($context)) {return array();} $action = ";If ('user' === $context) {$action = 'bp_member_blog_order_options';} elseif ('directory' === $context) {$action = 'bp_blogs_directory_order_options';} /** *推荐使用filter,而不是在'bp_member_blog_order_options' *或'bp_blogs_directory_order_options' ** @since BuddyPress 3.0.0 ** @param数组的blog过滤器。* @param string上下文。*/ $filters = apply_filters('bp_nouveau_get_blogs_filters', array('active' => __('Recently active', 'buddyboss'), ' latest ' => __('newest', 'buddyboss'), 'alphabetical' => __('alphabetical', 'buddyboss'),), $context);If ($action) {return bp_nouveau_parse_hooked_options($action, $filters);}返回$过滤器;}
更新日志
版本 | 描述 |
---|---|
BuddyPress 3.0.0 | 介绍了。 |