查询多个帖子类型不起作用

时间:2011-05-02 作者:pixeline

我希望我的frontpage显示我最新的博客帖子列表,这些帖子与我最新的“产品”自定义帖子类型的帖子合并。

从我收集的文档来看,这应该是可行的:

query_posts( array(\'post_type\' => array(\'post\', \'product\') ) );
while (have_posts()) : the_post();
   the_title();
   the_excerpt();
endwhile;
但这就变成了一个奇怪的列表,由页面组成!

请注意,我已将其置于循环之外。

我做错了什么?

1 个回复
SO网友:Geert

我会使用new WP_Query. 使用query_posts 仅用于主回路。

When should you use WP_Query vs query_posts() vs get_posts()?

结束

相关推荐