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



attribute_escape › WordPress Function

Seit2.0.6
Veraltet2.8.0
attribute_escape ( $text )
Parameter:
  • (string) $text
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (string)
Definiert in:
Codex:

Escaping for HTML attributes.



Quellcode

function attribute_escape( $text ) {
	_deprecated_function( __FUNCTION__, '2.8.0', 'esc_attr()' );
	return esc_attr( $text );
}