Definition:
function _c( $text, $domain = 'default' ) {}
Retrieve translated string with vertical bar context
Quite a few times, there will be collisions with similar translatable text found in more than two places but with different translated context.
Parameters
- string $text: Text to translate
- string $domain: Optional. Domain to retrieve the translated text
Return values
returns:Translated context string without pipe
Source code
function _c( $text, $domain = 'default' ) {
_deprecated_function( __FUNCTION__, '2.9', '_x()' );
return before_last_bar( translate( $text, $domain ) );
}
4299

February 12, 2011 


No comments yet... Be the first to leave a reply!