Support

Account

Home Forums General Issues How To display the gallery's one image in front end

Solved

How To display the gallery's one image in front end

  • HI,
    How To display the gallery’s one image in front end.

    <?php $images = get_field(‘images_gallery’); if( $images ): ?>
    <?php foreach( $images as $image ): ?>

    “/>

  • Do you mean you want to display the first image in the gallery by itself? If so, with the code you have $images[0] will be the first image. So something like this should work:

    <img src="<?php echo $images[0]["sizes"]["large"]; ?>" >

    You don’t need to put that in the foreach loop. Just after checking if($images):

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘How To display the gallery's one image in front end’ is closed to new replies.