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



_search_terms_tidy › WordPress Function

Da2.9.0
Deprecato3.7.0
_search_terms_tidy ( $t )
Accedi:
  • private
Parametri:
  • (string) $t Search terms to "tidy", e.g. trim.
    Richiesto:
Ritorna:
  • (string) Trimmed search terms.
Definito a:
Codex:

Formerly used internally to tidy up the search terms.



Sorgenti

function _search_terms_tidy( $t ) {
	_deprecated_function( __FUNCTION__, '3.7.0' );
	return trim( $t, "\"'\n\r " );
}