wordpress / latest / functions / _ex.html

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

Displays translated string with gettext 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

File: wp-includes/l10n.php. View all references

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

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
3.0.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_ex