wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_ex › WordPress Function

Seit3.0.0
Veraltetn/v
_ex ( $text, $context, $domain = 'default' )
Parameter: (3)
  • (string) $text Text to translate.
    Erforderlich: Ja
  • (string) $context Context information for the translators.
    Erforderlich: Ja
  • (string) $domain Optional. Text domain. Unique identifier for retrieving translated strings. Default 'default'.
    Erforderlich: Nein
    Standard: 'default'
Definiert in:
Codex:

Displays translated string with gettext context.



Ähnliche Funktionen: _e, _x, _nx, _

Quellcode

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