_admin_search_query()

In this article

Displays the search query.

Description

A simple wrapper to display the "s" parameter in a GET URI. This function should only be used when the_search_query() cannot.

Source

function _admin_search_query() {
	echo isset( $_REQUEST['s'] ) ? esc_attr( wp_unslash( $_REQUEST['s'] ) ) : '';
}

Changelog

VersionDescription
2.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.