创建page 使用custom page template, 然后创建自定义WP_Query object 返回您最后的帖子。
您可以得到如下结果:
<?php
/*
Template Name: Blog Page
*/
get_header();
$args = array(
\'post_type\' => \'any\', #all post types
\'posts_per_page\' => 10 #get 10 posts
);
$query = new WP_Query( $args );
if($query->have_posts()):
while($query->have_posts()):
$query->the_post();
the_title(); #display the title
endwhile;
endif;
get_footer();