the_search_query

Definition:
function the_search_query() {}

Display the contents of the search query variable.
The search query string is passed through esc_attr() to ensure that it is safe for placing in an html attribute.

Defined filters

  • the_search_query
    apply_filters( 'the_search_query', get_search_query( false )

Source code

function the_search_query() {

	echo esc_attr( apply_filters( 'the_search_query', get_search_query( false ) ) );

}

3039

No comments yet... Be the first to leave a reply!

Leave a comment