Home › Forums › Add-ons › Repeater Field › Getting Alt Text to show up in Image Field › Reply To: Getting Alt Text to show up in Image Field
something like
$image = wp_get_attachment_image_src(get_sub_field('image', false), 'gallery');
$image2 = wp_get_attachment_image_src(get_sub_field('image', false), 'full');
<a href="<?php echo $image2[0]; ?>" rel="shadowbox[gallery]">
<img class="gallery-images" src="<?php
echo $image[0]; ?>" $alt=<?php
echo get_post_meta(get_sub_field('image', false),
'_wp_attachment_image_alt', true); ?>" /></a>
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.