wpseek.com
A WordPress-centric search engine for devs and theme authors



_ex › WordPress Function

Since3.0.0
Deprecatedn/a
_ex ( $text, $context, $domain = 'default' )
Parameters: (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: 'default'
Defined at:
Codex:

Displays translated string with gettext context.



Related Functions: _e, _x, _nx, _

Source

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