回声帖子中最顶级的父(祖先)类别

时间:2013-03-03 19:58:18

标签: wordpress

我的网站具有以下结构

  • 水果
    • 苹果
    • 橙子

我有一个名为“Pits”的帖子,Pits同时属于Apples和Oranges。

在我的主题中,我想只回应最顶级的父母类别“水果”。 我尝试过无数代码,但它们似乎只回显第一类父类,而不是更高一级。

1 个答案:

答案 0 :(得分:3)

使用Get Ancestors

<?php
$id = get_the_ID();
$post_category = get_the_category($id);
$ancestors = get_ancestors($post_category[0]->term_id, 'category');
$root = end($ancestors);
?>