I have ACF gallery and one the homapage I just want to show 1 image, then have a link to another page where the gallery shows them all.
Is there a way I can code it so it shows 1 image?
So far I have;
<?php
$images = get_field('images');
$size = 'full'; // (thumbnail, medium, large, full or custom size)
if( $images ): ?>
<div class="car_slider slick_banner">
<?php foreach( $images as $image ): ?>
<div>
<?php echo wp_get_attachment_image( $image['ID'], $size ); ?>
</div>
<?php endforeach; ?>
</div>
<?php endif; ?>