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 _load_textdomain_just_in_time() instead.

_get_path_to_translation() WordPress Function

The get_path_to_translation() function is used to get the path to a translation file. This function is useful for plugins and themes that need to load their own translation files.

_get_path_to_translation( string $domain, bool $reset = false ) #

Gets the path to a translation file for loading a textdomain just in time.


Description

Caches the retrieved results internally.

Top ↑

See also


Top ↑

Parameters

$domain

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

$reset

(bool)(Optional)Whether to reset the internal cache. Used by the switch to locale functionality.

Default value: false


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( $domain, $reset = false ) {
	static $available_translations = array();

	if ( true === $reset ) {
		$available_translations = array();
	}

	if ( ! isset( $available_translations[ $domain ] ) ) {
		$available_translations[ $domain ] = _get_path_to_translation_from_lang_dir( $domain );
	}

	return $available_translations[ $domain ];
}


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.