我试图在另一个循环中使用一个自定义WP\\U查询循环来显示来自内部循环的数据,独立于主循环。我发现this solution 但我真的不知道如何使用它。下面是代码,它可以工作,但主循环会生成重复的帖子。
<?php
// define the main query
$main_args = array(
\'post_type\' => \'page\',
\'post_parent\' => \'10\',
);
// execute the main query
$the_main_loop = new WP_Query($main_args);
// go main query
if($the_main_loop->have_posts()) : while($the_main_loop->have_posts()) : $the_main_loop->the_post();
?>
<p>This is the content from the main loop</p>
<?php
// define the inner query
$inner_args = array(
\'post_type\' => \'page\',
\'post_parent\' => \'20\',
);
// execute the inner query
$the_inner_loop = new WP_Query($inner_args);
// go inner query
if($the_inner_loop->have_posts()) : while($the_inner_loop->have_posts()) : $the_inner_loop->the_post();
?>
<p>This is the content from the inner loop</p>
<?php
// end the inner loop, no reset
endwhile; endif;
?>
<p>This is another content from the main loop</p>
<?php
// end the main loop
endwhile; endif; wp_reset_postdata();
?>
谢谢!