自定义内容滑块停止复制

时间:2014-06-30 作者:Adam

我已经在这方面工作了一段时间,我有四个帖子显示在旋转木马中,这很好。单击旋转木马中的下一张幻灯片时,将显示相同的四个立柱

知道我做错了什么吗?

谢谢

        <div id="blog" class="carousel slide carousel-sync" data-ride="carousel" data-interval="false">

        <div class="carousel-inner blog">

        <?php $query = new WP_Query(array(\'post_type\' => \'post\', \'posts_per_page\' => -1,)); while ( $query->have_posts() ) : $query->the_post(); ?>

        <div class="item" id="<?php echo $post->ID;?>" >

       <div class="col-md-6 nopadding view view-ninth" style="padding-left:4px; padding-right:4px;">
                        <?php the_post_thumbnail(\'large\'); ?>
                        <div class="content">
                                                <h2><?php the_title() ;?></h2>
                        <p><?php $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,15) . \'...\'; ?></p>
                        <a href="#" class="info">Read More</a>
                                                </div>
                        </div>
      </div>
      <div class="item" id="<?php echo $post->ID;?>" >            
    <div class="col-md-6 nopadding view view-ninth" style="padding-left:4px; padding-right:4px;">
                        <?php the_post_thumbnail(\'large\'); ?>
                        <div class="content">
                                                <h2><?php the_title() ;?></h2>
                        <p><?php $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,15) . \'...\'; ?></p>
                        <a href="#" class="info">Read More</a>
                                                </div>
                        </div>
     </div>
     <div class="item" id="<?php echo $post->ID;?>" >                  
        <div class="col-md-6 nopadding view view-ninth" style="padding-left:4px; padding-right:4px;">
                        <?php the_post_thumbnail(\'large\'); ?>
                        <div class="content">
                                                <h2><?php the_title() ;?></h2>
                        <p><?php $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,15) . \'...\'; ?></p>
                        <a href="#" class="info">Read More</a>
                                                </div>
                        </div>
      </div>
      <div class="item" id="<?php echo $post->ID;?>" >            
    <div class="col-md-6 nopadding view view-ninth" style="padding-left:4px; padding-right:4px;">
                        <?php the_post_thumbnail(\'large\'); ?>
                        <div class="content">
                                                <h2><?php the_title() ;?></h2>
                        <p><?php $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,15) . \'...\'; ?></p>
                        <a href="#" class="info">Read More</a>
                                                </div>
                        </div>                                        


        </div><!-- end item -->        
<?php endwhile; wp_reset_postdata(); ?>


        </div>


</div>                         


                  <a class="carousel-control right " href="#blog" data-slide="next" >R</a>

      <a class="carousel-control left " href="#blog" data-slide="prev" >L</a>                          


                                </div> 
    <?php get_sidebar(  ); // right ?>
                        </div>
<script>

                        jQuery(document).ready(function($){

                        $("#blog").find(\'.item:nth-child(4n-7)\').addClass(\'active\');

                                $(\'.customslider\').each(function(){

                                $(this).find(\'.item:nth-child(4n-7)\').addClass(\'active\');

                                })
                        })


</script>

1 个回复
SO网友:Adam

我通过删除item类中的所有项并添加一点

<?php $i=1; while ($i <= 1) { ?>
<div class="col-md-6 nopadding view view-ninth" style="padding-left:4px; padding-right:4px;">
                    <?php the_post_thumbnail(\'large\'); ?>
                    <div class="content">
                    <h2><?php the_title() ;?></h2>
                    <p><?php $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,15) . \'...\'; ?></p>
                    <a href="#" class="info">Read More</a>
                    </div>
                    </div>   <?php $i++;}?>

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post