Advertisement
imranmodel32

treehouse source one

Jun 23rd, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. <?php
  2.  
  3. // carousel pagination
  4. $args = array(
  5. 'post_type' => 'post',
  6. 'category_name' => 'featured'
  7. );
  8. $the_query = new WP_Query( $args );
  9.  
  10. ?>
  11. <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
  12.  
  13. <ol class="carousel-indicators">
  14.  
  15. <?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_posts();?>
  16.  
  17. <li data-target="#carousel-example-generic" data-slide-to="<?php echo $the_query->current_post; ?>" <?php if( $the_query->current_post == 0 ):?>class="active"<?php endif; ?>></li>
  18.  
  19. <?php endwhile; endif;?>
  20.  
  21. </ol>
  22.  
  23. <?php rewind_posts(); ?>
  24.  
  25.  
  26. <!-- Wrapper for slides -->
  27. <div class="carousel-inner">
  28.  
  29. <?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_posts();?>
  30.  
  31. <div class="item <?php if( $the_query->current_post == 0 ):?>active<?php endif; ?>">
  32.  
  33. <?php
  34.  
  35. $thumbnail_id = get_post_thumbnail_id();
  36. $thumbnail_url = wp_get_attachment_image_src($thumbnail_id,'thumbnail-size',true);
  37. $thumbnail_mata = get_post_meta($thumbnail_id,'_wp_attachment_image_alt',true);
  38.  
  39. ?>
  40.  
  41. <a href="<?php the_permalink();?>">
  42. <img src="<?php echo $thumbnail_url[0];?>" alt="<?php echo $thumbnail_mata;?>" />
  43. </a>
  44. <div class="carousel-caption"><?php the_title();?></div>
  45. </div>
  46.  
  47. <?php endwhile; endif;?>
  48.  
  49. </div>
  50.  
  51. <!-- Controls -->
  52. <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
  53. <span class="glyphicon glyphicon-chevron-left"></span>
  54. </a>
  55. <a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
  56. <span class="glyphicon glyphicon-chevron-right"></span>
  57. </a>
  58.  
  59. </div><!-- .carousel -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement