正确格式化PHP Wordpress循环

时间:2012-11-28 13:27:43

标签: php wordpress format

这是最好的方法吗? 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(); ?>

1 个答案:

答案 0 :(得分:0)

你应该使用wp_query,它提供更清晰的代码IMO。但不管怎样,你不必为类别设置两个不同的循环,你可以一次发送两个循环。

query_posts( 'CATEGORY_NAME =冷铸造,铸造');

正如Nikola所说,添加一个wp_reset_query();在您的自定义查询之后。