apply_filters( 'override_load_textdomain', bool $override, string $domain, string $mofile, string|null $locale )
- Since
- 2.9.0, 6.2.0
Filters whether to override the .mo file loading.
Compatibility
- WordPress
- since 6.2.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$overridebool- Whether to override the .mo file loading. Default false.
$domainstring- Text domain. Unique identifier for retrieving translated strings.
$mofilestring- Path to the MO file.
$localestring|null- Locale.
Where this hook fires · 1
wp-includes/l10n.php:769load_textdomain()
Source code
* * @param bool $override Whether to override the .mo file loading. Default false. * @param string $domain Text domain. Unique identifier for retrieving translated strings. * @param string $mofile Path to the MO file. * @param string|null $locale Locale. */ $plugin_override = apply_filters( 'override_load_textdomain', false, $domain, $mofile, $locale ); if ( true === (bool) $plugin_override ) { unset( $l10n_unloaded[ $domain ] ); return true; }Changelog
Introduced in 2.9.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
6.2.0
Added the
$locale parameter.from the docblock2.9.0
Introduced.from the docblock
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.