您好我想为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; ?>