Definition:
function esc_attr__( $text, $domain = 'default' ) {}
Retrieves the translation of $text and escapes it for safe use in an attribute.
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_attr__( $text, $domain = 'default' ) { return esc_attr( translate( $text, $domain ) ); }
1024
No comments yet... Be the first to leave a reply!