load_script_translations WordPress Filter Hook

The load_script_translations hook is used to load translation files for a given script. This is useful for scripts that are not included in WordPress core, but are instead included as part of a plugin or theme.

apply_filters( 'load_script_translations', string $translations, string $file, string $handle, string $domain ) #

Filters script translations for the given file, script handle and text domain.


Parameters

$translations

(string)JSON-encoded translation data.

$file

(string)Path to the translation file that was loaded.

$handle

(string)Name of the script to register a translation domain to.

$domain

(string)The text domain.


Top ↑

Source

File: wp-includes/l10n.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
5.0.2Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.