首頁  >  問答  >  主體

如何將課程新增至 WordPress 主頁上的最新貼文?

我在Wordpress中使用以下功能在主頁上顯示最新的三篇文章。 是否可以將類別 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');
?>

P粉073857911P粉073857911185 天前321

全部回覆(1)我來回復

  • P粉384366923

    P粉3843669232024-03-22 13:03:01

    CSS 選擇器:last-child 可以為你工作

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

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

    回覆
    0
  • 取消回覆