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
返回值
  • (string)
定义位置
相关方法
the_search_queryget_search_form_admin_search_queryget_search_linkget_search_template
引入
2.3.0
弃用
-

get_search_query函数是一个WordPress函数,用于检索搜索查询字符串: 这个函数不接受任何参数,并返回搜索查询字符串。

检索搜索WordPress查询变量的内容。

搜索查询字符串通过esc_attr()传递,以确保它可以安全地放在一个HTML属性中。

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;
}

常见问题

FAQs
查看更多 >