在自定义循环中,我想检索类别标签作为标签的类名称。
我测试了此处给出的解决方案,只是得到一个空值:
wordpress get_the_category returns empty
$catquery = new WP_Query('category_name="steps"');
if($catquery->have_posts()):
$categories = get_the_category();
foreach($categories as $category){
echo '<div class="section '.$category.'">;
}
$ category仅返回一个空值...如何使其检索类别段“ steps”?