Show parents categories of selected child categories.
-
So far I have found this code which shows all parents categories available but not selected child categories. All my parents are under a grandparent category too so would it be possible to show parents if grandchild is listed? Can anyone help me to modify the code to show only those selected? Thanks.
<?php foreach((get_the_category()) as $childcat) { $parentcat = $childcat->category_parent; echo get_cat_name($parentcat); } ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Show parents categories of selected child categories.’ is closed to new replies.