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



esc_html__ › WordPress Function

Seit2.8.0
Veraltetn/v
esc_html__ ( $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'
Gibt zurück:
  • (string) Translated text.
Definiert in:
Codex:

Retrieves the translation of $text and escapes it for safe use in HTML output.

If there is no translation, or the text domain isn't loaded, the original text is escaped and returned.


Ähnliche Funktionen: esc_html_e, esc_html_x, esc_html, esc_xml, esc_attr__

Quellcode

function esc_html__( $text, $domain = 'default' ) {
	return esc_html( translate( $text, $domain ) );
}