gettext_{$domain} WordPress Filter Hook
The gettext_{$domain} hook allows you to override the translation for a given text domain. This can be useful if you want to change the translation for a plugin or theme, or if you want to provide a custom translation for your site.
apply_filters( "gettext_{$domain}", string $translation , string $text , string $domain ) #
Filters text with its translation for a domain.
Description
The dynamic portion of the hook name, $domain
, refers to the text domain.
Parameters
- $translation
(string)Translated text.
- $text
(string)Text to translate.
- $domain
(string)Text domain. Unique identifier for retrieving translated strings.
Source
File: wp-includes/l10n.php
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |