<?php if ( have_rows( 'gallery', $post->ID ) ): ?>
<?php while ( have_rows( 'gallery', $post->ID ) ): the_row(); ?>
<div class="col-md-6 col-lg-4 item">
<?php $images = get_sub_field( 'images', $post->ID ); ?>
<a class="lightbox" href="<?php echo $images['url']; ?>">
<img src="<?php echo $images['url']; ?>"
class="img-fluid image scale-on-hover"
alt="<?php echo $images['alt'] ?>"/>
</a>
</div>
<?php endwhile; ?>
<?php endif; ?>
Вот статья по сортировке
www.advancedcustomfields.com/resources/how-to-sort... пока не могу понять как перевернуть массив? Что бы был вывод наоборот.