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



stripslashes_from_strings_only › WordPress Function

Seit4.4.0
Veraltetn/v
stripslashes_from_strings_only ( $value )
Parameter:
  • (mixed) $value The array or string to be stripped.
    Erforderlich: Ja
Gibt zurück:
  • (mixed) The stripped value.
Definiert in:
Codex:

Callback function for `stripslashes_deep()` which strips slashes from strings.



Quellcode

function stripslashes_from_strings_only( $value ) {
	return is_string( $value ) ? stripslashes( $value ) : $value;
}