PHP – Limit and offset foreach loops
I am going to add limit and offset to this loop: <?php $images = get_field('am_c_gallery'); if( $images ): ?> <?php foreach( $images as $image ): ?> <div class="item-big"></div> <?php endforeach; ?> <?php endif; ?> How can I add offset 1…