Use this code by its self and it will get the parent category of whatever the result is and echo it. From “forms” > “Php”.
1 2 3 4 5 6 |
foreach (get_the_category() as $cat) { // yay shows parent category for each $dog there is $parent = get_category($cat->category_parent); echo $dog = $parent->cat_name; } |