_ex()

_ex( string $text, string $context, string $domain = ‘d…

_ex( string $text, string $context, string $domain = ‘default’ )

显示带gettext上下文的翻译字符串。
Display translated string with gettext context.

目录锚点:#参数#源码


参数(Parameters)

参数 类型 说明
$text (string) 要翻译的文本。
$context (string) 译者的上下文信息。
$domain (string) 文本域。用于检索翻译字符串的唯一标识符。

源码(Source)

/**
 * Display translated string with gettext context.
 *
 * @since 3.0.0
 *
 * @param string $text    Text to translate.
 * @param string $context Context information for the translators.
 * @param string $domain  Optional. Text domain. Unique identifier for retrieving translated strings.
 * @return string Translated context string without pipe.
 */
function _ex( $text, $context, $domain = 'default' ) {
	echo _x( $text, $context, $domain );
}
更新版本 源码位置 使用 被使用
3.0.0 wp-includes/l10n.php 19 10
类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册