nickberens360
3/11/2015 - 1:08 PM

wordpress: add class to first item. bootstrap carousel example

wordpress: add class to first item. bootstrap carousel example

<?php if( have_rows('slides') ): ?>
 	<? $i = 0; ?>
	<?php  while ( have_rows('slides') ) : the_row(); ?>	
		<div class="item <? if($i === 0): ?>active<? endif; ?>">
			<img src="<?php the_sub_field('slide_image'); ?>">
			<div class="carousel-caption">
			 <p><?php the_sub_field('slide_caption'); ?></p>
			</div>
		</div>
		<? $i++; ?>
	<?php endwhile; ?>
<?php endif; ?>