我想用Bootsrap旋转木马来显示我的帖子-
它们正在显示,但无法正常工作。它基本上不会滑动。。。。
下面是一个实例:
http://latitudesadventure.co.uk/novocore/dusty-oak/
我正在使用以下代码:
<div id="myCarousel" class="carousel slide">
<!-- Carousel items -->
<div class="carousel-inner">
<?php
$my_query = new WP_Query(\'posts_per_page=5\');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID;?>
<!-- The 1st Loop... -->
<div class="active item well-blue">
<div class="offset1">
<div class="carousel-image">
<?php
if (class_exists(\'MultiPostThumbnails\')) :
MultiPostThumbnails::the_post_thumbnail(get_post_type(), \'secondary-image\');
endif;
?>
</div>
<h3 style="color:white;text-align:center"><?php the_title(); ?></h3>
<h3 style="color:white;text-align:center"> <?php the_field( "number" ); ?></h3>
</div>
</div>
<?php endwhile;
// The 2nd Loop limits the query to 2 more posts...
$limit_query = new WP_Query(\'posts_per_page=2\');
if($limit_query->have_posts()) : while ($limit_query->have_posts()) : $limit_query->the_post();
if( $post->ID == $do_not_duplicate ) continue; ?>
<!-- The 2nd Loop same data as 1st loop -->
<?php endwhile; endif; wp_reset_query(); ?>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div>
如果我选择“post\\u per-page=1”,它们都会显示(两行),但是,它仍然不会滑动-我希望所有的帖子都会显示-使用当前状态逐个滑动,但无需执行任何操作,这不起作用。
任何帮助都将是惊人的,
非常感谢。