wordpress bootstrap carousel inside modal -


this driving me crazy. need this, please.

this bootstrap carousel inside modal.

i figure things out, everything's working, need control "data-slide-to" define slide opens on modal window.

here's have far:

query_posts( array ( 'category_name' => 'video', 'posts_per_page' => -1 ) ); // loop while ( have_posts() ) : the_post();?> <div class="span6">     <a href="#modalvideo-<? the_id();?>" data-toggle="modal"><?php the_post_thumbnail(); ?></a>     <div id="modalvideo-<? the_id();?>" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="mymodallabel" aria-hidden="true">         <div id="mycarousel-<? the_id();?>" class="carousel slide">             <div class="carousel-inner">                 <?php                 $the_query = new wp_query(array(                                           'category_name' =>'video',                                           'posts_per_page' => 1                                           ));                 while ( $the_query->have_posts() ) :                     $the_query->the_post();                 ?>                 <div class="item active">                     <?php the_content();?>                 </div>             <?php endwhile; wp_reset_postdata(); ?>             <?php             $the_query = new wp_query(array(                                       'category_name' =>'video',                                       'offset' => 1                                       ));             while ( $the_query->have_posts() ) :                 $the_query->the_post();             ?>             <div class="item">                 <?php the_content();?>             </div>         <?php endwhile; wp_reset_postdata(); ?>     </div>     <a class="carousel-control left" href="#mycarousel-<? the_id();?>" data-slide="prev">&lsaquo;</a>     <a class="carousel-control right" href="#mycarousel-<? the_id();?>" data-slide="next">&rsaquo;</a> </div> <button class="btn" data-dismiss="modal" aria-hidden="true">x</button> </div> </div> <?php endwhile; // reset query wp_reset_query(); ?> 

any appreciated. thanks


Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -