load_script_translations хук-фильтр . WP 5.0.2
Filters script translations for the given file, script handle and text domain.
Использование
add_filter( 'load_script_translations', 'filter_function_name_9428', 10, 4 ); function filter_function_name_9428( $translations, $file, $handle, $domain ){ // filter... return $translations; }
- $translations(строка)
- JSON-encoded translation data.
- $file(строка)
- Path to the translation file that was loaded.
- $handle(строка)
- Name of the script to register a translation domain to.
- $domain(строка)
- The text domain.
Список изменений
С версии 5.0.2 | Введена. |
Где вызывается хук
wp-includes/l10n.php 1180
return apply_filters( 'load_script_translations', $translations, $file, $handle, $domain );