Current path: home/webdevt/www/wdp/wp-content/themes/quadric/framework/modules/blog/templates/single/parts/
?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/framework/modules/blog/templates/single
<?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">
<?php edgtf_quadric_get_module_template_part('templates/parts/top-date', 'blog'); ?>
<div class="edgtf-blog-gallery edgtf-owl-slider">
<?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><?php echo wp_get_attachment_image( $gimg_id, 'full' ); ?></div>
<?php endforeach;
endif;
?>
</div>
</div>
<?php } ?>