0

我正在使用循环来生成 Coda Slider 幻灯片放映所需的幻灯片。幻灯片应该从 5 个不同的类别中提取最新的帖子。我遇到的问题是它从 5 个类别中集体而不是单独地提取 5 个最新帖子。所以它从第一个类别中提取 2 个帖子,然后从其他类别中提取 1 个帖子。

有什么办法可以让它正常工作吗?

这是我正在使用的代码:

<?php 
$cat_post_query = new WP_Query($query_string . 'cat=7,8,10,9,11');
while ($cat_post_query->have_posts()) : $cat_post_query->the_post();
$do_not_duplicate = $post->ID;?>

<div>
* slide content *
</div>

<?php endwhile;  ?>
4

1 回答 1

0

对于那些对这个问题的答案感兴趣的人,我自己找到了答案。

<div class="coda-slider"  id="slideshow">    

<?php
// array of category IDs
$categories =  array(1,2,3,4,5);

foreach ($categories as $cat) :
  $post = false;
  $post = get_posts('cat='.$cat.'&posts_per_page=1');
  if($post) :
    $post = $post[0];
    setup_postdata($post); ?>

    <!-- rest of normal loop -->

    <div <?php post_class(); ?>>
      <h2 class="title">title used to dynamically generate thumbs in codaslider</h2>
      <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
      <?php the_content(); ?>
    </div>

  <?php endif; ?>
<?php endforeach; ?>  

</div>

原始的 foreach 循环代码来自这篇文章:

http://wordpress.org/support/topic/display-most-recent-post-from-each-of-several-categories-on-home-page

于 2012-11-16T00:31:41.527 回答