【发布时间】:2013-11-13 18:04:55
【问题描述】:
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) 请帮帮我
谢谢。
【问题讨论】:
标签: wordpress