Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness. Use _get_path_to_translation() instead.

_get_path_to_translation_from_lang_dir() WordPress Function

The _get_path_to_translation_from_lang_dir() function is used to retrieve the path to a translation file for a given language. This function is typically used when loading translation files for plugins or themes.

_get_path_to_translation_from_lang_dir( string $domain ) #

Gets the path to a translation file in the languages directory for the current locale.


Description

Holds a cached list of available .mo files to improve performance.

Top ↑

See also


Top ↑

Parameters

$domain

(string)(Required)Text domain. Unique identifier for retrieving translated strings.


Top ↑

Return

(string|false) The path to the translation file or false if no translation file was found.


Top ↑

Source

File: wp-includes/l10n.php

function _get_path_to_translation_from_lang_dir( $domain ) {
	static $cached_mofiles = null;

	if ( null === $cached_mofiles ) {
		$cached_mofiles = array();

		$locations = array(
			WP_LANG_DIR . '/plugins',
			WP_LANG_DIR . '/themes',
		);

		foreach ( $locations as $location ) {
			$mofiles = glob( $location . '/*.mo' );
			if ( $mofiles ) {
				$cached_mofiles = array_merge( $cached_mofiles, $mofiles );
			}
		}
	}

	$locale = determine_locale();
	$mofile = "{$domain}-{$locale}.mo";

	$path = WP_LANG_DIR . '/plugins/' . $mofile;
	if ( in_array( $path, $cached_mofiles, true ) ) {
		return $path;
	}

	$path = WP_LANG_DIR . '/themes/' . $mofile;
	if ( in_array( $path, $cached_mofiles, true ) ) {
		return $path;
	}

	return false;
}


Top ↑

Changelog

Changelog
VersionDescription
4.7.0Introduced.

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.