如何从WPML插件获取不同语言的帖子 时间:2014-01-29 作者:Jayyrus 我正在使用Thermal-Api 插件,以定义REST WS以获取JSON格式的帖子。我的客户端使用WPML翻译帖子,我需要将前端设置的语言传递给WP\\U查询。是否有特定的参数要传递给WP\\U查询以仅选择该语言中的帖子,或者是否有方法动态更改“ICL\\U language\\U CODE”以检索我需要的内容??谢谢 1 个回复 最合适的回答,由SO网友:adelval 整理而成 假设$new_lang 保存所需的两字母语言代码(例如“fr”),可以执行以下操作:global $sitepress; $current_lang = $sitepress->get_current_language(); //save current language $sitepress->switch_lang($new_lang); //...run query here; if you use WP_Query or get_posts make sure you set suppress_filters=0 ... $sitepress->switch_lang($current_lang); //restore previous language 有关更多信息,请查看http://wpml.org/documentation/support/achieving-wpml-compatibility-for-your-themes-and-plugins/debugging-theme-compatibility/ 结束 文章导航