[wd_asp elements=’search’ ratio=’100%’ id=1]

Get Parent Category using Category

26th January 2014

Wordpress - Get

wordpress category

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;
}