_ex() – Display translated string with gettext context.
You appear to be a bot. Output may be restricted
Description
Display translated string with gettext context.
Usage
_ex( $text, $context, $domain );
Parameters
- $text
- ( string ) required – Text to translate.
- $context
- ( string ) required – Context information for the translators.
- $domain
- ( string ) optional default: default – Optional. Text domain. Unique identifier for retrieving translated strings. Default 'default'.
Returns
void
Source
File name: wordpress/wp-includes/l10n.php
Lines:
1 to 3 of 3
function _ex( $text, $context, $domain = 'default' ) { echo _x( $text, $context, $domain ); }