get_search_query
函数
get_search_query ( $escaped = true )
- 参数
-
-
(bool)
$escaped
Whether the result is escaped. Default true. Only use when you are later escaping it. Do not use unescaped.- Required: 否
- Default: true
-
(bool)
- 返回值
-
- (string)
- 定义位置
-
-
wp-includes/general-template.php
, line 4297
-
wp-includes/general-template.php
- 引入
- 2.3.0
- 弃用
- –
Retrieves the contents of the search WordPress query variable.
The search query string is passed through esc_attr() to ensure that it is safe
for placing in an HTML attribute.
function get_search_query( $escaped = true ) { /** * Filters the contents of the search query variable. * * @since 2.3.0 * * @param mixed $search Contents of the search query variable. */ $query = apply_filters( 'get_search_query', get_query_var( 's' ) ); if ( $escaped ) { $query = esc_attr( $query ); } return $query; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。