从数据库中获取所有类别
$cats = get_categories();
//遍历类别
foreach ($cats as $cat) {
设置目录ID
$cat_id= $cat->term_id;
为目录创建标题
echo "<h2>".$cat->name."</h2>";
query_posts("cat=$cat_id&post_per_page=100");
if (have_posts()) : while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink();?>"><?php the_title(); ?></a>
<?php endwhile; endif; ?>
完成了wordpress循环。将为每个类别重新开始
<?php } ?>
完成foreach语句