translate_with_context

函数
translate_with_context ( $text, $domain = 'default' )
参数
  • (string) $text Text to translate.
    Required:
  • (string) $domain Domain to retrieve the translated text.
    Required:
    Default: 'default'
返回值
  • (string) Translated text.
相关
  • _x()
定义位置
相关方法
translate_with_gettext_contexttranslate_smileyget_the_content_wp_translate_postdataregister_widget_control
引入
2.5.0
弃用
2.9.0

translate_with_context: 这个函数检索一个文本字符串到当前语言或指定语言的翻译,并有一个指定的上下文。这用于消除可能在不同语境中有不同翻译的类似字符串的歧义。

像translate()一样翻译$text,但假定文本在其最后一个竖条之后包含一个上下文。

function translate_with_context( $text, $domain = 'default' ) {
	_deprecated_function( __FUNCTION__, '2.9.0', '_x()' );
	return before_last_bar( translate( $text, $domain ) );
}

常见问题

FAQs
查看更多 >