Uses
Uses | Description |
---|---|
wp-includes/l10n.php: _get_path_to_translation_from_lang_dir() | Gets the path to a translation file in the languages directory for the current locale. |
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.
Gets the path to a translation file for loading a textdomain just in time.
Caches the retrieved results internally.
(string) (Required) Text domain. Unique identifier for retrieving translated strings.
(bool) (Optional) Whether to reset the internal cache. Used by the switch to locale functionality.
Default value: false
(string|false) The path to the translation file or false if no translation file was found.
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 ]; }
Version | Description |
---|---|
4.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_get_path_to_translation