get_translations_for_domain

函数
get_translations_for_domain ( $domain )
参数
  • (string) $domain Text domain. Unique identifier for retrieving translated strings.
    Required:
返回值
  • (Translations|NOOP_Translations) A Translations instance.
定义位置
相关方法
get_admin_users_for_domaintranslations_api_get_path_to_translation_from_lang_dirwp_get_translation_updateslist_translation_updates
引入
2.8.0
弃用
-

get_translations_for_domain: 这个函数检索一个特定文本域的翻译。它接收一个文本域作为参数,并返回一个翻译数组,其中键是原始字符串,值是翻译后的字符串。

返回一个文本域的翻译实例。

如果没有,则返回空的翻译实例。

function get_translations_for_domain( $domain ) {
	global $l10n;
	if ( isset( $l10n[ $domain ] ) || ( _load_textdomain_just_in_time( $domain ) && isset( $l10n[ $domain ] ) ) ) {
		return $l10n[ $domain ];
	}

	static $noop_translations = null;
	if ( null === $noop_translations ) {
		$noop_translations = new NOOP_Translations;
	}

	return $noop_translations;
}

常见问题

FAQs
查看更多 >