load_script_textdomain_relative_path filter-hook . WP 5.0.2
Filters the relative path of scripts used for finding translation files.
Usage
add_filter( 'load_script_textdomain_relative_path', 'filter_function_name_8057', 10, 2 ); function filter_function_name_8057( $relative, $src ){ // filter... return $relative; }
- $relative(string|false)
- The relative path of the script. False if it could not be determined.
- $src(string)
- The full source URL of the script.
Changelog
Since 5.0.2 | Introduced. |
Where the hook is called
load_script_textdomain_relative_path
wp-includes/l10n.php 1093
$relative = apply_filters( 'load_script_textdomain_relative_path', $relative, $src );