【发布时间】:2017-09-15 09:33:52
【问题描述】:
我正在使用此代码在 Wordpress 中生成两个类别列表:
<h2>Headline 1</h2>
<article class="post" id="post-<?php the_ID(); ?>">
<ul class="columns">
<?php echo wp_list_categories('title_li=&hide_empty=0&exclude=1,54,55'); ?>
</ul>
</article>
<h2>Headline 2</h2>
<article class="post" id="post-<?php the_ID(); ?>">
<ul class="columns">
<?php echo wp_list_categories('title_li=&hide_empty=0&include=54,55'); ?>
</ul>
</article>
有没有办法取消链接没有任何帖子的类别?我仍然希望它们在列表中可见,但不是作为链接。
谢谢!
【问题讨论】:
标签: wordpress