我有一个 WP_Query 循环,可以拉出 4 个最近的帖子:
<?php
$featuredPosts = new WP_Query();
$featuredPosts->query('showposts=4');
while ($featuredPosts->have_posts()) : $featuredPosts->the_post(); ?>
<div class="recentpost">
<?php echo get_the_post_thumbnail ($_post->ID, 'small'); ?>
<div class="titlerecent">
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
</div>
</div>
<?php endwhile; ?>
我想要做的是修改它并使循环中的第一个帖子的样式不同。我不只是想给它添加一个 CSS 类,我想把它包装在一个完全不同的<div>
.
所以我希望第一个帖子被包裹起来<div class="homefirstpost">
,然后剩下的 3 个帖子如上所述,在<div class="recentpost">
.
我需要做什么?