我的网站具有以下结构
我有一个名为“Pits”的帖子,Pits同时属于Apples和Oranges。
在我的主题中,我想只回应最顶级的父母类别“水果”。 我尝试过无数代码,但它们似乎只回显第一类父类,而不是更高一级。
答案 0 :(得分:3)
<?php
$id = get_the_ID();
$post_category = get_the_category($id);
$ancestors = get_ancestors($post_category[0]->term_id, 'category');
$root = end($ancestors);
?>