Guest User

Untitled

a guest
Oct 18th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. if(have_rows('post_carousel_item')):
  2. $carousel_counter = 0; ?>
  3. <div id="carouselExampleSlidesOnly" class="carousel slide" data-ride="carousel">
  4. <div class="carousel-inner" role="listbox">
  5. <?php while ( have_rows('post_carousel_item') ) : the_row();?>
  6. <div class="carousel-item<?php if($carousel_counter ===0):?> active<?php endif;?>">
  7. <img src="<?php the_sub_field('post_carousel_image');?>"/>
  8. <div class="carousel-caption d-none d-md-block">
  9. <?php the_sub_field('post_carousel_caption');?>
  10. </div>
  11. </div>
  12. <?php $carousel_counter++;?>
  13. <?php endwhile;?>
  14. </div>
  15. <a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
  16. <span class="carousel-control-prev-icon" aria-hidden="true"></span>
  17. <span class="sr-only">Previous</span>
  18. </a>
  19. <a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
  20. <span class="carousel-control-next-icon" aria-hidden="true"></span>
  21. <span class="sr-only">Next</span>
  22. </a>
  23. </div>
  24. <?php endif;?>
  25. <?php endif;
  26. endwhile;
Add Comment
Please, Sign In to add comment