$args = array(
//post basics
\'post_status\' => \'publish\',
\'post_type\' => \'post\',
\'posts_per_page\' => 10
//order
\'orderby\' => \'date\',
\'order\' => \'desc\',
//category query
\'tax_query\' => array(
array(
\'taxonomy\' => \'category\',
\'field\' => \'slug\',
\'terms\' => \'news\' //make this the slug of the category you want to use
)
)
);
$posts = new WP_Query( $args );
$posts
现在将包含10条新闻帖子。你可以根据自己的喜好进行调整,操作非常简单
WP_Query
非常强大。
文档:WP_Query