Support

Account

Home Forums Add-ons Gallery Field ACF Gallery vs WPML Reply To: ACF Gallery vs WPML

  • Realise this is an old post but I’ve tried using the following code:

    
    <?php 
    global $sitepress;
    $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);
    if( $awards_images ): ?>
        <ul class="press awards cf">
            <?php foreach( $awards_images as $awards_image ): ?>
                <li>
                     <img src="<?php echo $awards_image['sizes']['large']; ?>" alt="<?php echo $awards_image['alt']; ?>" />
                </li>
            <?php endforeach; ?>
        </ul>
    <?php endif; ?>
    

    But it still seemingly displays the images in a completely random order.

    Am I doing something wrong in my code?