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



js_escape › WordPress Function

Seit2.0.4
Veraltet2.8.0
js_escape ( $text )
Parameter:
  • (string) $text The text to be escaped.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (string) Escaped text.
Definiert in:
Codex:

Escape single quotes, specialchar double quotes, and fix line endings.

The filter {@see 'js_escape'} is also applied by esc_js().


Quellcode

function js_escape( $text ) {
	_deprecated_function( __FUNCTION__, '2.8.0', 'esc_js()' );
	return esc_js( $text );
}