gettext_with_context_(domain) filter-hook . WP 5.5.0
Filters text with its translation based on context information for a domain.
The dynamic portion of the hook, $domain, refers to the text domain.
Usage
add_filter( 'gettext_with_context_(domain)', 'filter_function_name_4100', 10, 4 ); function filter_function_name_4100( $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 271
$translation = apply_filters( "gettext_with_context_{$domain}", $translation, $text, $context, $domain );