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



translate_with_context › WordPress Function

Seit2.5.0
Veraltet2.9.0
translate_with_context ( $text, $domain = 'default' )
Parameter: (2)
  • (string) $text Text to translate.
    Erforderlich: Ja
  • (string) $domain Domain to retrieve the translated text.
    Erforderlich: Nein
    Standard: 'default'
Siehe:
Gibt zurück:
  • (string) Translated text.
Definiert in:
Codex:

Translates $text like translate(), but assumes that the text contains a context after its last vertical bar.



Quellcode

function translate_with_context( $text, $domain = 'default' ) {
	_deprecated_function( __FUNCTION__, '2.9.0', '_x()' );
	return before_last_bar( translate( $text, $domain ) );
}