WordPress 101 – Part 9: Edit the query_posts with WP_Query
视频学习参考: https://www.youtube.com/watch?v=GA–ROatgYM&list=PLriKzYyLb28nUFbe0Y9d-19uVkOnhYxFE&index=9
1.可以建立一个新的模板页面 比如 page-home.php
2.重点学习使用 WP_Query()和参数传递
$lastBlog = new WP_Query(‘type=post&posts_per_page=2&offset=1’);
$lastBlog = new WP_Query(array(
‘type’ => ‘post’, ‘posts_per_page’ => 2, ‘offset’ => 1
));
//重置查询
wp_reset_postdata();
Super Simple!