WordPress函数文档_ex()
获取translate()返回的被翻译过的内容 描述 Displays translated string w…
获取translate()返回的被翻译过的内容
描述
Displays translated string with gettext context
用法
<?php _ex( $text, $context, $domain ) ?>
参数
$text
(string) (必填) Text to translate
默认值: None
$context
(string) (必填) Context information for the translators
默认值: None
$domain
(string) (可选) Domain to retrieve the translated text
默认值: ‘default’
返回值
(void)
This function does not return a value. .
注意
- l10n is an abbreviation for localization.
历史
- 添加于 版本: 3.0.0
源文件
_ex() 函数的代码位于 wp-includes/l10n.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* 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 );
}
|
相关
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()
- 原文:http://codex.wordpress.org/Function_Reference/_ex
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!