the_search_query

函数
the_search_query ( No parameters )

search_query是一个WordPress函数,用于检索用户输入的搜索查询字符串。

显示搜索查询变量的内容。

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

function the_search_query() {
	/**
	 * Filters the contents of the search query variable for display.
	 *
	 * @since 2.3.0
	 *
	 * @param mixed $search Contents of the search query variable.
	 */
	echo esc_attr( apply_filters( 'the_search_query', get_search_query( false ) ) );
}

常见问题

FAQs
查看更多 >