Definition:
function translate_with_context( $text, $domain = 'default' ) {}
Translates $text like translate(), but assumes that the text contains a context after its last vertical bar.
Parameters
- string $text: Text to translate
- string $domain: Domain to retrieve the translated text
Return values
returns:Translated text
Source code
function translate_with_context( $text, $domain = 'default' ) { _deprecated_function( __FUNCTION__, '2.9', '_x()' ); return before_last_bar( translate( $text, $domain ) ); }
3089
No comments yet... Be the first to leave a reply!