因此,基本上,我只将帖子分配给子类别,而不分配给类别(这样它们都会显示在PremLink中),而在帖子页面中只显示子类别。我想在帖子页面的某个地方显示父类别。
我需要这样的东西:
Sample Post belongs to SubcategoryName a part of Category
Buttercake belongs to Cakes a part of Desserts
我尝试了以下代码:
<?php
foreach((get_the_category()) as $category) {
echo get_category_parents($cat, TRUE, \' » \');
echo $category->cat_name . \' \';
}
?>
但我一直在犯这样的错误:
Catchable fatal error: Object of class WP_Error could not be converted to string in C:\\wamp\\www\\wp-content\\themes\\yoko\\content.php on line 22
有人知道如何做到这一点吗?