Use this code by its self and it will get the parent category of whatever the result is and echo it. From “forms” > “Php”.
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;
}