绝对地由于您可以将查询实例化为变量,因此可以根据需要多次执行查询。当然,查询循环需要大量到数据库的连接,因此必须小心。通常,如果您需要许多子查询,这基本上意味着您的工作流可以通过某种方式得到增强。
子查询示例:
$some_posts = new WP_Query();
$some_posts->query(\'cat=1&showposts=2\');
while ($some_posts->have_posts()) : $some_posts->the_post();
// Start new subquery with query values
$inner_query = new WP_Query();
$inner_query->query(\'cat=1&showposts=2\');
while ($inner_query->have_posts()) : $inner_query->the_post();
// Do something in your inner/sub query
endwhile;
endwhile;