您好,我正在使用以下查询将两篇特色帖子拉到我正在构建的网站主页上。如何将最后一个类添加到它放到页面上的第二篇帖子中?
<h3>Case Studies</h3>
<?php $my_query = new WP_Query(\'post_type=casestudy&posts_per_page=2\');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<div class="half">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
<p class="home-news-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
谢谢约翰