wp_download_language_pack() WordPress Function
The wp_download_language_pack() function downloads a language pack for a given locale. If the locale is not specified, the function will download the current locale. This function is useful for installing language packs on a Wordpress site.
wp_download_language_pack( string $download ) #
Download a language pack.
Description
See also
Parameters
- $download
 (string)(Required)Language code to download.
Return
(string|false) Returns the language code if successfully downloaded (or already installed), or false on failure.
Source
File: wp-admin/includes/translation-install.php
function wp_download_language_pack( $download ) {
	// Check if the translation is already installed.
	if ( in_array( $download, get_available_languages(), true ) ) {
		return $download;
	}
	if ( ! wp_is_file_mod_allowed( 'download_language_pack' ) ) {
		return false;
	}
	// Confirm the translation is one we can download.
	$translations = wp_get_available_translations();
	if ( ! $translations ) {
		return false;
	}
	foreach ( $translations as $translation ) {
		if ( $translation['language'] === $download ) {
			$translation_to_load = true;
			break;
		}
	}
	if ( empty( $translation_to_load ) ) {
		return false;
	}
	$translation = (object) $translation;
	require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
	$skin              = new Automatic_Upgrader_Skin;
	$upgrader          = new Language_Pack_Upgrader( $skin );
	$translation->type = 'core';
	$result            = $upgrader->upgrade( $translation, array( 'clear_update_cache' => false ) );
	if ( ! $result || is_wp_error( $result ) ) {
		return false;
	}
	return $translation->language;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description | 
|---|---|
| 4.0.0 | Introduced. |