pre_load_script_translations хук-фильтр . WP 5.0.2
Pre-filters script translations for the given file, script handle and text domain.
Returning a non-null value allows to override the default logic, effectively short-circuiting the function.
Использование
add_filter( 'pre_load_script_translations', 'filter_function_name_1694', 10, 4 ); function filter_function_name_1694( $translations, $file, $handle, $domain ){ // filter... return $translations; }
- $translations(строка/false/null)
- JSON-encoded translation data.
По умолчанию: null - $file(строка/false)
- Path to the translation file to load. False if there isn't one.
- $handle(строка)
- Name of the script to register a translation domain to.
- $domain(строка)
- The text domain.
Список изменений
С версии 5.0.2 | Введена. |
Где вызывается хук
wp-includes/l10n.php 1147
$translations = apply_filters( 'pre_load_script_translations', null, $file, $handle, $domain );