Definition:
function __( $text, $domain = 'default' ) {}
Retrieves the translation of $text. 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 __( $text, $domain = 'default' ) {
return translate( $text, $domain );
}
4423

February 12, 2011 


No comments yet... Be the first to leave a reply!