Wordpress - How To Get Parent Category ID

后端 未结 3 804
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-08 04:11

Wordpress - How To Get Parent Category ID


my category is  
news
---->sport news

i have a post in

3条回答
  •  野的像风
    2021-02-08 04:44

    $thiscat =  get_query_var('cat'); // The id of the current category
    $catobject = get_category($thiscat,false); // Get the Category object by the id of current category
    $parentcat = $catobject->category_parent; // the id of the parent category 
    

提交回复
热议问题