Warning: This function has been deprecated. Use _x() instead.
translate_with_context( string $text, string $domain = 'default' )
Translates $text like translate(), but assumes that the text contains a context after its last vertical bar.
Description Description
See also See also
Parameters Parameters
- $text
-
(string) (Required) Text to translate
- $domain
-
(string) (Optional) Domain to retrieve the translated text
Default value: 'default'
Return Return
(string) Translated text
Source Source
File: wp-includes/deprecated.php
function translate_with_context( $text, $domain = 'default' ) { _deprecated_function( __FUNCTION__, '2.9.0', '_x()' ); return before_last_bar( translate( $text, $domain ) ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Use _x() |
2.5.0 | Introduced. |