Wordpress - query_posts

时间:2010-06-25 00:47:38

标签: wordpress loops

有没有办法查询多个特定帖子?例如,以下内容为:

        // retrieve one post with an ID of 670
        query_posts('p=670');   

但据我所知,我不能将其扩展为两个帖子,用逗号分隔。有谁知道更好的方法?

1 个答案:

答案 0 :(得分:1)

这应该有效:

query_posts(array('post__in' => array(670, 671, 672)));

来源: http://codex.wordpress.org/Function_Reference/query_posts#Post_.26_Page_Parameters

相关问题