wpseek.com
WordPress开发者和主题制作者的搜索引擎



_ex › WordPress Function

Since3.0.0
已弃用n/a
_ex ( $text, $context, $domain = 'default' )
参数: (3)
  • (string) $text Text to translate.
    Required: Yes
  • (string) $context Context information for the translators.
    Required: Yes
  • (string) $domain Optional. Text domain. Unique identifier for retrieving translated strings. Default 'default'.
    Required: No
    默认: 'default'
定义在:
文档:

Displays translated string with gettext context.



Related Functions: _e, _x, _nx, _

源码

function _ex( $text, $context, $domain = 'default' ) {
	echo _x( $text, $context, $domain );
}