Support

Account

Home Forums Add-ons Gallery Field ACF gallery + simple lightbox problem Reply To: ACF gallery + simple lightbox problem

  • It doesn’t work for me. :/

    <?php $images = get_field('gallery_images');
    if( $images ): ?>
    
            <?php foreach( $images as $image ): ?>
                <div class="gallery_content_wrapper">
                    <a href="<?php echo $image['url']; ?>">
                    	<div class="gallery_image_wrapper">
                        	<img src="<?php echo $image['sizes']['thumbnail']; ?>" alt="<?php echo $image['alt']; ?>" />
                    	</div>
                    </a>
                </div>
                
                <?php if ( function_exists('slb_activate') ){
    		    $content = slb_activate($content);
    		    }
    			echo $content; ?>
                
            <?php endforeach; ?>
    <?php endif; ?>