Gets the path to a translation file for loading a textdomain just in time.
Caches the retrieved results internally.
$domainstringrequired
$resetbooloptional
Default:false
function _get_path_to_translation( $domain, $reset = false ) {
_deprecated_function( __FUNCTION__, '6.1.0', 'WP_Textdomain_Registry' );
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 |
|---|---|
| 6.1.0 | This function has been deprecated. Use _load_textdomain_just_in_time() instead. |
| 4.7.0 | Introduced. |
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_get_path_to_translation