Wordpress - 如何获取父类别 ID
my category is
news
---->sport news
我在体育新闻上有一个帖子。
当我进入体育新闻帖子时 如何获得父母(新闻)ID?
此代码回显父猫名称
foreach((get_the_category()) as $childcat) { $parentcat = $childcat->category_parent;
echo get_cat_name($parentcat);
echo $parentcat->term_id;}
echo $post->post_parent->cat_ID;
此代码回显单页猫名
global $post;$category = get_the_category($post->ID);echo $category[0]->name;
猫名的这个 chode 回显 id
$category = get_the_category(); echo $category[0]->cat_ID;
我需要回显父 ID(cat_ID)请帮助我
谢谢。