PHP:需要循环才能在返回的帖子之间切换

时间:2012-09-05 23:02:28

标签: php wordpress merge alternate

我有三个查询返回的帖子数组。 来自博客的帖子不在“媒体”或“见解”中的3个帖子, 3来自博客的帖子在'媒体' 3来自博客的帖子在“见解”中。

这就是我对此的看法。我不认为这是最优雅的解决方案:

<? $args = array(
    'post_type' => 'post',
    'posts_per_page' => 3,
    'category__not_in' => array( 268, 269 )
  );
$homePosts = new WP_Query($args);

$args = array(
    'post_type' => 'post',
    'category_name' => 'in-the-media',
    'posts_per_page' => 3
  );
$inthemediaPosts = new WP_Query($args);

$args = array(
  'post_type' => 'post',
  'category_name' => 'bt-insights',
  'posts_per_page' => 3
);
$insightsPosts = new WP_Query($args);

$allqueries = array($homePosts,$inthemediaPosts,$insightsPosts);
foreach ($allqueries as $myquery) {
  while ($myquery->have_posts()) : $myquery->the_post(); ?>

目前,循环通过3个主页,然后是3个媒体帖子,然后是3个bt-insight帖子。

我需要的是循环通过1个主页,1个媒体帖子,1个bt-insight帖子,1个homepost,1个inthemediea post ...等重复。

希望这是有道理的。建议?

2 个答案:

答案 0 :(得分:0)

while($allqueries[0]->have_posts() || $allqueries[1]->have_posts() || $allqueries[2]->have_posts()) {
  if ($allqueries[0]->have_posts()) $allqueries[0]->the_post();
  if ($allqueries[1]->have_posts()) $allqueries[1]->the_post();
  if ($allqueries[2]->have_posts()) $allqueries[2]->the_post();
}

答案 1 :(得分:0)

如果删除allqueries内容并在之后:

,该怎么办?
$insightsPosts = new WP_Query($args);

请改用它。

for ($i = 0; $i < 3; $i++) {
    if ($homePosts->post_count > $i)
        echo $homePosts->posts[$i]->post_title;
    if ($inthemediaPosts->post_count > $i) 
        echo $inthemediaPosts->posts[$i]->post_title;
    if ($insightsPosts->post_count > $i) 
        echo $insightsPosts->posts[$i]->post_title;
}

那应该打印出帖子的标题,你可以根据需要使用其他字段。这可以转移到一个函数,以避免重复逻辑。