apply_filters( 'pre_load_textdomain', bool|null $loaded, string $domain, string $mofile, string|null $locale )
- Since
- 6.3.0
Filters whether to short-circuit loading .mo file.
Description
Returning a non-null value from the filter will effectively short-circuit the loading, returning the passed value instead.
Compatibility
- WordPress
- since 6.3.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
$loadedbool|null- The result of loading a .mo file. Default null.
$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:749load_textdomain()
Source code
* * @param bool|null $loaded The result of loading a .mo file. Default null. * @param string $domain Text domain. Unique identifier for retrieving translated strings. * @param string $mofile Path to the MO file. * @param string|null $locale Locale. */ $loaded = apply_filters( 'pre_load_textdomain', null, $domain, $mofile, $locale ); if ( null !== $loaded ) { if ( true === $loaded ) { unset( $l10n_unloaded[ $domain ] ); } return $loaded;Changelog
Introduced in 6.3.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
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.