我正在使用循环来生成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; ?>
答案 0 :(得分: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循环代码来自这篇文章: