polylang在taxinomy中存储翻译,但最好使用polylang对象访问它们,如下所示:
// test if the plugin polylang is present
if (isset($GLOBALS["polylang"])) {
$translations = $GLOBALS["polylang"]->model->post->get_translations($post->ID);
// $translations contains an array with all translations of the post
}
所有翻译都是相互关联的,因此没有父翻译。如果要查找第一个创建的帖子,可以搜索最低ID或按发布时间排序。