<div class=”list_bar”>// <a href=”<?php echo get_category_link($category);?>”><?php single_cat_title(); ?></a></div> //标题的调用方式
<div class=”list_content”><div class=”c1-body”>
<?php while (have_posts()) : the_post(); ?> //文章标题的循环
<div class=”” style=”padding:3px 0px;”><div class=”f-left”>· <a href=”<?php the_permalink() ?>” title=”<?php the_title(); ?>”><?php echo mb_strimwidth(get_the_title(), 0, 40, ‘…’); ?> //文章的标题
</a></div><div class=”f-right”><?php the_time(‘m-d’) ?></div><div class=”clear”></div></div> //文章的日期
<?php endwhile; ?> //文章标题循环的结束
</div>
</div>
</div>
<?php } wp_reset_query();?>
添加完成后,删除参考的“调用分类目录下的文章”的代码,因为这段代码仅仅适用于参考的。
来到网站前台,你看出现了8个分类:
You must be logged in to view the hidden contents.
为什么会出现8个分类,因为我们对8个id进行循环:
我们可以来到wordpress后台-分类目录:
我们只有3个分类,并且只有“未分类”分类目录下有2篇文章,对吧
在这里,我把多余的分类去除掉: