当我使用wpml时,我如何获得页面或帖子语言? 时间:2010-09-24 作者:sorin 我在用WordPress MultiLanguage Plugin 我想知道特定元素、页面或帖子的语言是什么。我确实有id 但我想获得语言。 2 个回复 SO网友:John P Bloch 从WPML网站:http://wpml.org/documentation/support/wpml-coding-api/Language constants WPML defines the following constants which can be used in the theme: Constant Description Example ICL_LANGUAGE_CODE Code for the current language fr ICL_LANGUAGE_NAME Name of current language, in the current language Français ICL_LANGUAGE_NAME_EN Name of the current language name in English French SO网友:Voles 要获取特定帖子或页面的语言,可以使用wpml_get_language_information(). 这将返回具有以下索引的数组:语言环境文字方向显示本地名称不同语言Example$language_information = wpml_get_language_information($post_id); $locale = $language_information[\'locale\']; 我通过andreas找到了这个函数。n在上WPML Forums. 结束 文章导航