Wordpress - How To Get Parent Category ID

后端 未结 3 850
爱一瞬间的悲伤
爱一瞬间的悲伤 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:41

    cat_ID;
        $parent = $thiscat->category_parent;
        if (!empty ($catid) ) {
        $catlist = get_categories(
                                    array(
                                    'child_of' => $catid,
                                    'orderby' => 'id',
                                    'order' => 'ASC',
                                    'exclude' => $parent,
                                    'hide_empty' => '0'
                                    ) );
    
            ?>
                
                
    

提交回复
热议问题