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>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.