_ex( string   $text , string   $context , string   $domain = 'default' )

Displays translated string with guettext context.

Parameters

$text string required
Text to translate.
$context string required
Context information for the translators.
$domain string optional
Text domain. Unique identifier for retrieving translated strings.
Default 'default' .

Default: 'default'

Source

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

Changuelog

Versionen Description
3.0.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.