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



esc_attr_e › WordPress Function

Seit2.8.0
Veraltetn/v
esc_attr_e ( $text, $domain = 'default' )
Parameter: (2)
  • (string) $text Text to translate.
    Erforderlich: Ja
  • (string) $domain Optional. Text domain. Unique identifier for retrieving translated strings. Default 'default'.
    Erforderlich: Nein
    Standard: 'default'
Definiert in:
Codex:

Displays translated text that has been escaped for safe use in an attribute.

Encodes < > & " ' (less than, greater than, ampersand, double quote, single quote). Will never double encode entities. If you need the value for use in PHP, use esc_attr__().


Quellcode

function esc_attr_e( $text, $domain = 'default' ) {
	echo esc_attr( translate( $text, $domain ) );
}