Support

Account

Home Forums Add-ons Gallery Field ACF Gallery and Backstrech Reply To: ACF Gallery and Backstrech

  • Hi @gomezvalverde

    Did the <?php echo $image['url']; ?> code work? I believe you can do it like this:

    $.backstretch([
    <?php
    foreach( $images as $image ) {
        echo '"' . $image['url'] . '",';
    }
    ?>
    ], {

    I hope this helps 🙂