wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



_admin_search_query › WordPress Function

Da2.7.0
Deprecaton/a
_admin_search_query ( Nessun parametro )
Definito a:
Codex:

Displays the search query.

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


Sorgenti

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