trAvis - MANAGER
Edit File: gallery.php
<?php $image_gallery_val = get_post_meta( get_the_ID(), 'edgtf_post_gallery_images_meta' , true );?> <?php if($image_gallery_val !== ""){ ?> <div class="edgtf-post-image"> <div class="edgtf-blog-gallery edgtf-slick-slider edgtf-slick-slider-navigation-style"> <?php if($image_gallery_val != '' ) { $image_gallery_array = explode(',',$image_gallery_val); } if(isset($image_gallery_array) && count($image_gallery_array)!= 0): foreach($image_gallery_array as $gimg_id): ?> <div><a itemprop="url" href="<?php the_permalink(); ?>"><?php echo wp_get_attachment_image( $gimg_id, 'full' ); ?></a></div> <?php endforeach; endif; ?> </div> </div> <?php } ?>