我试图显示一个帖子类别,我有两个类别,有两个不同的家长。
我只想根据父类别显示其中一个类别。这是我目前用来获取posts类别的代码。
$categories = get_the_category();
echo \'<span class="parentCat">more from \';
foreach ( $categories as $category ) {
echo \'<a href="/#\'. $category->slug .\'"><strong>\' .$category->cat_name. \'</strong></a>\';
}
echo \'</span>\';
非常感谢你