如何在 Wordpress 主页上将 class 添加到最新的 post?

How to add a class to latest post on Wordpress homepage?

我在 Wordpress 中使用以下功能在主页上显示最新的三个帖子。 是否可以将 class class="latest-posts-right" 添加到最后一个 div 以便我可以给它另一种样式?我该怎么做?

<?php
/* Show latest posts on homepage */
function latest_post() {

    $args = array(
        'posts_per_page' => 3, /* how many post you need to display */
        'offset' => 0,
        'orderby' => 'post_date',
        'order' => 'DESC',
        'post_type' => 'post', /* your post type name */
        'post_status' => 'publish'
    );
    $query = new WP_Query($args);
    if ($query->have_posts()) :
        while ($query->have_posts()) : $query->the_post();
            ?>
            <div class="latest-posts">
            <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
            <p><?php the_excerpt(); ?></p>
            <div class="readmore"><a href="<?php the_permalink(); ?>">Read more »</a></div>
            </div>
            <?php
        endwhile;
    endif;
}

add_shortcode('lastest-post', 'latest_post');
?>

CSS 选择器 :last-child 可以为您工作

div.latest-posts:last-child{
   /* css rules */
}

div.latest-posts:nth-child(3){
   /* css rules */
}