wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_search_terms_tidy › WordPress Function

Seit2.9.0
Veraltet3.7.0
_search_terms_tidy ( $t )
Zugriff:
  • private
Parameter:
  • (string) $t Search terms to "tidy", e.g. trim.
    Erforderlich: Ja
Gibt zurück:
  • (string) Trimmed search terms.
Definiert in:
Codex:

Formerly used internally to tidy up the search terms.



Quellcode

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