2015-10-30, 13:37:04
Hi
Just wanted to say thanks to mganko for a great plugin.
Between you, shawn_a and Featherlight jQuery lightbox I finally got my gallery the way I wanted it.
Gallery: http://www.giantpygmy.net/gp/index.php?id=new-img
Cheers,
C.
Just wanted to say thanks to mganko for a great plugin.
Between you, shawn_a and Featherlight jQuery lightbox I finally got my gallery the way I wanted it.
Code:
<?php
$galleryItems = eg_return_gallery('newimages');
debugLog($galleryItems);
array_walk($galleryItems['items'],'output');
function output($item,$key){
GLOBAL $SITEURL;
echo "<div>";
echo "<h6>".$item['field-0']."</h6>";
echo '<a href="'.$SITEURL.'/data/'.$item['filename'].'"data-featherlight="image" ">';
echo '<img src="'.$SITEURL.'/data/'.$item['filename'].'">';
echo "</a>";
echo "</div>";
}
?>
Gallery: http://www.giantpygmy.net/gp/index.php?id=new-img
Cheers,
C.