Home › Forums › Add-ons › Gallery Field › ACF Gallery vs WPML › Reply To: ACF Gallery vs WPML
@daretothink
Try the following, I think its failing because the id and image vars are outside your loop:
<?php
global $sitepress;
if( $awards_images ): ?>
<ul class="press awards cf">
<?php foreach( $awards_images as $awards_image ):
$current_main_id = icl_object_id( get_the_id(), 'post', true, $sitepress->get_default_language() );
$awards_images = get_field('our_wines_awards', $current_main_id);
?>
<li>
<img src="<?php echo $awards_image['sizes']['large']; ?>" alt="<?php echo $awards_image['alt']; ?>" />
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
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.