Function Reference/ 2
Languages:
English •
Русский •
(Add your language)
This page is named incorrectly due to a limitation of Mediawiki page naming. The function name is __() not _2().
Description
Retrieves the translated string from the translate().
Usage
<?php $translated_text = __( $text, $domain ); ?>
Parameters
- $text
- (string) (required) Text to translate
- Default: None
- $domain
- (string) (optional) Domain to retrieve the translated text
- Default: 'default'
Return Values
- (string)
- Translated text
Examples
Notes
- See __() An alias of translate()
- l10n is an abbreviation for localization.
- The function name is two underscores in a row. In some fonts it looks like one long underscore. (Who says programmers don't have a sense of humor.)
Change Log
Source File
__() is located in wp-includes/l10n.php.
Related
L10n:
translate(),
__(),
_e(),
_n(),
_x(),
_ex(),
_nx(),
esc_attr__(),
esc_attr_e(),
esc_attr_x(),
esc_html__(),
esc_html_e(),
esc_html_x(),
_n_noop(),
_nx_noop(),
translate_nooped_plural()