gpt4 book ai didi

Wordpress - 如何获取父类别 ID

转载 作者:行者123 更新时间:2023-12-04 04:59:31 27 4
gpt4 key购买 nike

Wordpress - How To Get Parent Category 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 echo id of cat name
        $category = get_the_category();    echo $category[0]->cat_ID; 

我需要回显父 ID(cat_ID)
请帮助我

谢谢。

最佳答案

很简单,很简单。

//firstly, load data for your child category
$child = get_category(31);

//from your child category, grab parent ID
$parent = $child->parent;

//load object for parent category
$parent_name = get_category($parent);

//grab a category name
$parent_name = $parent_name->name;

学习 get_category

关于Wordpress - 如何获取父类别 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19961130/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com