wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_set_script_translations › WordPress Function
Seit5.0.0
Veraltetn/v
› wp_set_script_translations ( $handle, $domain = 'default', $path = '' )
| Parameter: (3) |
|
| Siehe: |
|
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: | |
| Changelog: |
|
Sets translated strings for a script.
Works only if the script has already been registered.Quellcode
function wp_set_script_translations( $handle, $domain = 'default', $path = '' ) {
global $wp_scripts;
if ( ! ( $wp_scripts instanceof WP_Scripts ) ) {
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
return false;
}
return $wp_scripts->set_translations( $handle, $domain, $path );
}