Support

Account

Home Forums Add-ons Repeater Field Add alt tag to image rotator Reply To: Add alt tag to image rotator

  • 
    <?php get_the_image( array( 'meta_key' => 'Feature', 'image_class' => 'border', 'size' => 'full', 'width' => '930', 'link_to_post' => false ) ); ?>
    <div id="homeRotator">
    <?php $values = array();
    	while(the_repeater_field('rotator_images')):
    	$values[] = get_sub_field('rotator_image');
    	endwhile;
    	shuffle($values);
    	foreach ($values as $value) :
    		$size = "full";
    		$image = wp_get_attachment_image_src($value,$size); ?>
    <!-- Add Alt Tag -->
    	<img src="<?php echo $image[0]; ?>" alt="your text here" />
    <?php endforeach; ?>
    </div>