_get_path_to_translation

函数


_get_path_to_translation ( $domain, $reset = false )
Access
Private
参数
  • (string)
    $domain
    Text domain. Unique identifier for retrieving translated strings.
    Required:
  • (bool)
    $reset
    Whether to reset the internal cache. Used by the switch to locale functionality.
    Required:
    Default: false
返回值
  • (string|false) The path to the translation file or false if no translation file was found.
相关
  • _load_textdomain_just_in_time()
定义位置
  • wp-includes/deprecated.php
    , line 4379
引入
4.7.0
弃用
6.1.0

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

Caches the retrieved results internally.

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 ];
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。