您可以添加category id
或category slug
输入要传递给的参数query_posts
:
<?php
// category slug (\'products\')
query_posts(array(
\'post_type\' => \'post\',
\'showposts\' => 5,
\'category_name\' => \'products\'
) );
?>
或
<?php
// category id (\'3\')
query_posts(array(
\'post_type\' => \'post\',
\'showposts\' => 5,
\'cat\' => \'3\'
) );
?>
在第二种情况下,可以使用逗号分隔的类别ID列表,如
\'cat\' => \'3,5,7\'
.