wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_get_path_to_translation is private and should not be used in themes or plugins directly.
_get_path_to_translation › WordPress Function
Seit4.7.0
Veraltet6.1.0
› _get_path_to_translation ( $domain, $reset = false )
| Zugriff: |
|
| Parameter: (2) |
|
| Siehe: | |
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Gets the path to a translation file for loading a textdomain just in time.
Caches the retrieved results internally.Quellcode
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 ];
}