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

Display translated string with gettext context.


Description Description


Parameters 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 value: 'default'


Top ↑

Return Return

(string) Translated context string without pipe.


Top ↑

Source Source

File: wp-includes/l10n.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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