2

<?php echo get_the_category_list(); ?>不要给我所有的类别。

<?php echo get_the_category_list(); ?>在我的footer.php文件中使用来显示我的类别,但在主页中只显示两个类别,并且在内部单个帖子中显示帖子的相关类别,而在页面中什么也不显示。即使我<?php wp_reset_query(); ?>每次使用后WP_Query

请帮我

4

2 回答 2

1

您可以使用

<ul>
<?php wp_list_categories('exclude=22&title_li='); ?>
</ul>
于 2012-10-09T15:24:11.820 回答
0
$categories = get_categories($args);
$html       = '<ul>';
foreach($categories as $cat){
$html .= '<li><a href="'.get_permalink($cat->term_id);.'"';
$html .= '<h2>'.$cat->cat_name.'</h2>'; 
$html .= '</a></li>';
}
$html .= '';
return $html;`

在你的功能中

于 2013-08-01T05:21:55.297 回答