Definition:
function esc_html__( $text, $domain = 'default' ) {}
Retrieves the translation of $text and escapes it for safe use in HTML output.
If there is no translation, or the domain isn’t loaded, the original text is returned.
Parameters
- string $text: Text to translate
- string $domain: Optional. Domain to retrieve the translated text
Return values
returns:Translated text
Source code
function esc_html__( $text, $domain = 'default' ) { return esc_html( translate( $text, $domain ) ); }
1034
No comments yet... Be the first to leave a reply!