<?php echo get_the_category_list(); ?>
不要给我所有的类别。
我<?php echo get_the_category_list(); ?>
在我的footer.php
文件中使用来显示我的类别,但在主页中只显示两个类别,并且在内部单个帖子中显示帖子的相关类别,而在页面中什么也不显示。即使我<?php wp_reset_query(); ?>
每次使用后WP_Query
请帮我
<?php echo get_the_category_list(); ?>
不要给我所有的类别。
我<?php echo get_the_category_list(); ?>
在我的footer.php
文件中使用来显示我的类别,但在主页中只显示两个类别,并且在内部单个帖子中显示帖子的相关类别,而在页面中什么也不显示。即使我<?php wp_reset_query(); ?>
每次使用后WP_Query
请帮我
您可以使用
<ul>
<?php wp_list_categories('exclude=22&title_li='); ?>
</ul>
$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;`
在你的功能中