load_script_translation_file WordPress Filter Hook
The load_script_translation_file hook is used to load a translation file for a WordPress script. This hook is fired by the load_script() function when a script is being loaded.
apply_filters( 'load_script_translation_file', string|false $file , string $handle , string $domain ) #
Filters the file path for loading script translations for the given script handle and text domain.
Parameters
- $file
(string|false)Path to the translation file to load. False if there isn't one.
- $handle
(string)Name of the script to register a translation domain to.
- $domain
(string)The text domain.
Source
File: wp-includes/l10n.php
Changelog
Version | Description |
---|---|
5.0.2 | Introduced. |