Support

Account

Home Forums Add-ons Gallery Field Bring gallery image into have post array Reply To: Bring gallery image into have post array

  • Hi @BeeBlu

    This debug info prooves that the images are being loaded. So you can use this in your code as you previous had:

    <?php 
    $images = get_field('gallery');
    ?>
    <!-- Image here -->
    <img src="<?php echo $images[0]["url"]["large"]; ?>" >