我希望我的frontpage显示我最新的博客帖子列表,这些帖子与我最新的“产品”自定义帖子类型的帖子合并。
从我收集的文档来看,这应该是可行的:
query_posts( array(\'post_type\' => array(\'post\', \'product\') ) );
while (have_posts()) : the_post();
the_title();
the_excerpt();
endwhile;
但这就变成了一个奇怪的列表,由页面组成!
请注意,我已将其置于循环之外。
我做错了什么?