wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



_search_terms_tidy › WordPress Function

Depuis2.9.0
Dépréciée3.7.0
_search_terms_tidy ( $t )
Accès:
  • private
Paramètres:
  • (string) $t Search terms to "tidy", e.g. trim.
    Requis: Oui
Retourne:
  • (string) Trimmed search terms.
Défini(e) dans:
Codex:

Formerly used internally to tidy up the search terms.



Source

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