How to display latest posts Wordpress
问题 On one of my pages I want a section to show the latest 3 news posts. Is there a simple way of doing this? 回答1: <?php 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(); ?> <a href="<?php the