__()
__( string $text, string $domain = ‘default’ ) 检索$text的…
__( string $text, string $domain = ‘default’ )
检索$text的翻译。
Retrieve the translation of $text.
目录锚点:#说明#参数#源码#笔记
说明(Description)
如果没有翻译,或者没有加载文本域,则返回原始文本。
参数(Parameters)
参数 | 类型 | 说明 |
---|---|---|
$text | (string) | 要翻译的文本。 |
$domain | (string) | 文本域。用于检索翻译字符串的唯一标识符。 |
源码(Source)
/** * Retrieve the translation of $text. If there is no translation, * or the text domain isn't loaded, the original text is returned. * * @since 2.1.0 * * @param string $text Text to translate. * @param string $domain Optional. Text domain. Unique identifier for retrieving translated strings. * @return string Translated text. */ function __( $text, $domain = 'default' ) { return translate( $text, $domain ); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
2.1.0 | wp-includes/l10n.php | 9 | 8 |
笔记(Notes)
对于转义包含链接的文本,请将uu()与sprintf结合使用。这样地
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!