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', 'wp_kama_pre_load_script_translations_filter', 10, 4 );

/**
 * Function for `pre_load_script_translations` filter-hook.
 * 
 * @param string|false|null $translations JSON-encoded translation data.
 * @param string|false      $file         Path to the translation file to load. False if there isn't one.
 * @param string            $handle       Name of the script to register a translation domain to.
 * @param string            $domain       The text domain.
 *
 * @return string|false|null
 */
function wp_kama_pre_load_script_translations_filter( $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 Введена.

Где вызывается хук

load_script_translations()
pre_load_script_translations
wp-includes/l10n.php 1286
$translations = apply_filters( 'pre_load_script_translations', null, $file, $handle, $domain );

Где используется хук в WordPress

Использование не найдено.