wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_ex › WordPress Function

Od3.0.0
Przestarzałyn/a
_ex ( $text, $context, $domain = 'default' )
Parametry: (3)
  • (string) $text Text to translate.
    Wymagane: Tak
  • (string) $context Context information for the translators.
    Wymagane: Tak
  • (string) $domain Optional. Text domain. Unique identifier for retrieving translated strings. Default 'default'.
    Wymagane: Nie
    Domyślny: 'default'
Zdefiniowane na:
Codex:

Displays translated string with gettext context.



Powiązane Funkcje: _e, _x, _nx, _

Źródło

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