gettext_with_context_(domain)
Filters text with its translation based on context information for a domain.
The dynamic portion of the hook name, $domain, refers to the text domain.
Usage
add_filter( 'gettext_with_context_(domain)', 'wp_kama_gettext_with_context_domain_filter', 10, 4 ); /** * Function for `gettext_with_context_(domain)` filter-hook. * * @param string $translation Translated text. * @param string $text Text to translate. * @param string $context Context information for the translators. * @param string $domain Text domain. Unique identifier for retrieving translated strings. * * @return string */ function wp_kama_gettext_with_context_domain_filter( $translation, $text, $context, $domain ){ // filter... return $translation; }
- $translation(string)
- Translated text.
- $text(string)
- Text to translate.
- $context(string)
- Context information for the translators.
- $domain(string)
- Text domain. Unique identifier for retrieving translated strings.
Changelog
Since 5.5.0 | Introduced. |
Where the hook is called
gettext_with_context_(domain)
wp-includes/l10n.php 288
$translation = apply_filters( "gettext_with_context_{$domain}", $translation, $text, $context, $domain );