我的目标是使用多个 wordpress 循环分别为给定类别中的每个帖子设置样式。我确实相信除了实际查询外,我大部分都已经弄清楚了。
我需要能够在第一个循环中查询一个类别中的 {MOST RECENT} 帖子,然后在第二个循环中查询一个类别中的第二个最近的帖子,然后在下一个循环中查询第三个最近的帖子,使我能够每个都有单独的类和样式。
任何帮助都会很棒+++!!
<?php if (have_posts()) : ?>
<?php query_posts('category_name=Main&posts_per_page=1&={MOST RECENT}'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="row1">
<div class="one">
<div class="post_data">
<div class="icons_right"><img src="pop_out_icon.png" alt="pop out icon" /></div>
<h1 class="post_title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<h2 class="post_snippet">Lorem Ipsum Dolar Sit Amet.</h2>
<p class="post_date"><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></p>
</div> <!-- post_data //-->
<?php the_content(); ?>
</div> <!-- 1 //-->
<?php endwhile; ?>
<?php query_posts('category_name=Main&posts_per_page=1&={SECOND MOST RECENT}'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="row2">
<div class="two">
<div class="post_data">
<div class="icons_right"><img src="pop_out_icon.png" alt="pop out icon" /></div>
<h1 class="post_title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<h2 class="post_snippet">Lorem Ipsum Dolar Sit Amet.</h2>
<p class="post_date"><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></p>
</div> <!-- post_data //-->
<?php the_content(); ?>
</div> <!-- 2 //-->
<?php endwhile; ?>
<?php endif; ?>