File: /var/www/shoetique/wp-content/themes/north-wp/inc/postformats/gallery.php
<?php $id = get_the_ID(); ?>
<?php 
	$attachments = get_post_meta($id, 'pp_gallery_slider', TRUE);
	$attachment_array = explode(',', $attachments);
	$rev_slider_alias = get_post_meta($id, 'rev_slider_alias', TRUE);
?>
<?php if ($rev_slider_alias) {?>
	<div class="post-gallery">
		<?php putRevSlider($rev_slider_alias); ?>
	</div>
<?php  } else { ?>
	<div class="post-gallery">
		<div class="carousel owl post-carousel rand-<?php echo rand(0,100); ?>" data-columns="1" data-bgcheck="true" data-navigation="true" rel="gallery">
				<?php foreach ($attachment_array as $attachment) : ?>
				    <?php 
				    	if ($masonry) {
				    		echo wp_get_attachment_image($attachment, 'north-blog-gallery-masonry');
				    	} else {
				    		echo wp_get_attachment_image($attachment, 'north-blog-post');
				    	}
				    ?>
				<?php endforeach; ?>
			</div>
	</div>
<?php } ?>