How to get the parent category of the current category?
-
On child category pages I need to get the parent of the current category. I tried:
<?php if (is_category( )) { $thiscat = get_category( get_query_var( 'cat' ) ); $catid = $thiscat->cat_ID; $parent = $catid->category_parent; if (!empty ($parent) ) { echo $parent; } else { echo '<span>this is a parent category</span>'; } } ?>
but I think
category_parent
only works with posts, not categories.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to get the parent category of the current category?’ is closed to new replies.