How can I check if category is a parent category

How can I possibly do this? Also how can I show its subcategories?

Related posts

Leave a Reply

1 comment

  1. Check this

    <?php $this_category = get_category($cat); ?>
    <!-- If category is parent, list it -->
    <?php if ($this_category->category_parent == 0) { ?>
    
    <?php } else { ?>
    <!-- If category is not parent, list parent category -->
    <?php $parent_category = get_category($this_category->category_parent); ?>
    
    
    <?php } ?>