我正在尝试使用WP\\u查询从自定义帖子获取帖子。
<ul>
<?php $query1 = query_posts( array( \'posts_per_page\' => -1, \'post_type\' => array(\'specialties\') ));
if(have_posts()): while(have_posts()): the_post();
?>
<li>
<!-- title from post type specialties -->
<p><?php the_title(); ?></p>
</li>
<?php
endwhile; endif; wp_reset_query();
?>
</ul>
它工作得很好。现在我需要从另一个自定义帖子中获取帖子,并在已经创建的循环中显示。现在代码如下所示:
<ul>
<?php $query1 = query_posts( array( \'posts_per_page\' => -1, \'post_type\' => array(\'specialties\') ));
if(have_posts()): while(have_posts()): the_post();
?>
<li>
<!-- title from post type specialties -->
<p><?php the_title(); ?></p>
<ul>
<?php query_posts( array( \'posts_per_page\' => -1, \'post_type\' => array(\'team\') ));
if(have_posts()): while(have_posts()): the_post();
?>
<!-- title from post type team -->
<li><a href="" class=""><?php the_title() ?></a></li>
<?php
endwhile; endif;
?>
</ul>
</li>
<?php
endwhile; endif; wp_reset_query();
?>
</ul>
如您所见,我正在尝试创建一个循环(在另一个循环中)来显示来自另一个自定义帖子的帖子,但它不起作用。我还试图添加
wp_reset_query()
在新
endif;
但它也不起作用。
我做错了什么?我想不出是什么问题。我们将非常感谢您的帮助。