До сих пор мне удавалось нормально добавлять родительские и дочерние категории, но только в виде обычного текста, без гиперссылок:
Код: Выделить всё
$category = get_the_category(get_the_ID());
// get the current category object
$child = get_category($category[0]->term_id);
// get it's parent object
$parent = get_category($child->parent);
echo 'Providing help and guidance on ' . $child->name ; if ( $parent->name ) { echo ' and ' ; }; echo $parent->name;
р>
Код: Выделить всё
$categories = get_the_category();
$cat = $categories[0]->cat_ID;
echo get_category_parents( $cat, true, ' and ' );
Подробнее здесь: https://stackoverflow.com/questions/793 ... the-layout