创建多个循环页面

时间:2011-10-17 13:07:43

标签: wordpress

您好我想为archive / category / tag

创建一个多循环页面

我很困惑,请帮忙

<?php 
$count = 1;
if (have_posts()) : while (have_posts()) : the_post();          
if($count == 1) : ?>

&lt; - 第一次循环 - &gt;我在这个循环中只需要一个帖子(所以我添加上面的代码)

 <?php else : ?>
 <?php the_post_thumbnail(); ?>
 <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
 <?php echo limit_words(get_the_excerpt(), '44'); ?>

&lt; - 第二次循环 - &gt; (本循环中的1篇文章)

 <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
 <?php echo limit_words(get_the_excerpt(), '35'); ?>

&lt; - 第三循环 - &gt; (本循环中的4篇文章)

  <ul><li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
  </li></ul>

&lt; - 第四循环 - &gt; (其余帖子将在此循环中)

 <?php the_post_thumbnail('thumbnail', array('class' => 'cover')); ?>
 <div class=""></div><a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
 <?php echo limit_words(get_the_excerpt(), '44'); ?></div>

 <?php endif; ?>    
 <?php $count++; ?> 
 <?php endwhile; ?> 
 </div><!-- /.post -->
 <?php else : ?>

 <h2 class="archiveTitle"><?php _e('Sorry, nothing matched your criteria','linepress');?></h2> 
 <?php endif; ?>

1 个答案:

答案 0 :(得分:0)

查看http://codex.wordpress.org/The_Loop,其中有关于使用多个循环的部分。这一直对我有用。