Your IP : 216.73.216.158


Current Path : /home/c/a/p/capemnetty/www/wp-content/themes/flair/postformats/
Upload File :
Current File : /home/c/a/p/capemnetty/www/wp-content/themes/flair/postformats/format-image.php

<?php 

global $post;

$attachments = get_post_meta( $post->ID, '_ebor_gallery_list', true );
$count = count($attachments);

if ( $attachments ){
	foreach( $attachments as $attachment ){
		echo '<img class="lazyOwl" src="'. esc_url($attachment) .'" alt="'. $post->title .'">';
	}	
}