WordPress函数文档_e()
显示translate()返回的被翻译过的内容 描述 译文 显示translate()返回的被翻译过的内容 原…
显示translate()返回的被翻译过的内容
描述
译文
显示translate()返回的被翻译过的内容
原文
Displays the returned translated text from translate().
用法
<?php _e( $text, $domain ) ?>
参数
$text
(string) (必填) Text to translate
默认值: None
$domain
(string) (可选) Domain to retrieve the translated text
默认值: ‘default’
返回值
(void)
This function does not return a value.
示例
Display some translated text:
1
2
3
4
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
<?php _e( ‘Some text to translate and display.’, ‘textdomain’ ); ?>
|
注意
- Echos returned translate() string.
- l10n is an abbreviation for localization.
历史
- 添加于 版本: 1.2.0
源文件
_e() 函数的代码位于 wp-includes/l10n.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Display translated text.
*
* @since 1.2.0
*
* @param string $text Text to translate.
* @param string $domain Optional. Text domain. Unique identifier for retrieving translated strings.
*/
function _e( $text, $domain = ‘default’ ) {
echo translate( $text, $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/_e
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!