bp_get_search_default_text (字符串美元的组件='')
返回给定组件的搜索框的默认文本。
描述
参数
- 美元的组件
-
(字符串)(可选)组件的名称。默认值:当前组件。
默认值:“
返回
(字符串)搜索字段的占位符文本。
源
文件:bp-core / bp-core-template.php
函数bp_get_search_default_text($component = ") {$bp = buddypress();If (empty($component)) {$component = bp_current_component();} $default_text = __('Search anything…', 'buddyboss');//大多数情况下,$component将是实际的组件ID。If (!empty($bp->{$component}->search_string)) {$ default_text = $bp->{$component}->search_string;} else{//当请求通过AJAX发送时,我们需要从$bp->页面中获取组件名称。如果(!空(bp - >页面- >{$组件}- >蛞蝓)){$ key = $ bp - >页面- >{$组件}- >弹头;如果(!空(bp - >{$关键}- > search_string)) {$ default_text = $ bp - >{$关键}- > search_string;}}}} /** *过滤给定组件的搜索框的默认文本。* * @since BuddyPress 1.5.0 * * @param string $default_text搜索框的默认文本。 * @param string $component Current component displayed. */ return apply_filters( 'bp_get_search_default_text', $default_text, $component ); }
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.5.0 | 介绍了。 |