Summery Summery
Translate string with gettext context, and escapes it for safe use in HTML output.
Syntax Syntax
Description Description
If there is no translation, or the text domain isn’t loaded, the original text is escaped and returned.
Parameters Parameters
- $text
-
(Required) Text to translate.
- $context
-
(Required) Context information for the translators.
- $domain
-
(Optional) Text domain. Unique identifier for retrieving translated strings. Default 'default'.
Default value: 'default'
Return Return
(string) Translated text.
Source Source
File: wp-includes/l10n.php
echo _x( $text, $context, $domain ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.9.0 | Introduced. |