wordpess显示最新文章代码

时间: 2023年 4月 3日 下午9:56

新闻中心

    ‘post’,
    ‘posts_per_page’ => 3, // 仅显示三篇文章
    );
    // 创建文章查询
    $query = new WP_Query( $args );
    // 循环文章
    while ( $query->have_posts() ) : $query->the_post();
    ?>