这是否是最好的方法 1. 显示页面的内容 2. 在页面内容下显示来自特定类别的所有帖子(或帖子的缩略图)
如果我的代码草率,请原谅我。如果有更好的方法可以做到这一点,我非常渴望学习。网站建成后可能会有 30 多个类别。
<?php get_header(); ?>
<div id="outerWrapper">
<div id="pageContent">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2>
<?php the_title(); ?>
</h2>
<?php the_content(); ?>
<?php endwhile; endif; ?>
<?php query_posts('category_name=cold-casting'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="pages"> <a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail(); ?>
</a> </div>
<?php endwhile;?>
<div class="clear"></div>
</div>
</div>
<?php query_posts('category_name=casting'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="pages"> <a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail(); ?>
</a> </div>
<?php endwhile;?>
<div class="clear"></div>
</div>
</div>
<?php get_footer(); ?>