Hello!
For display an album I have created with this great plugin, I'm using this code:
<?php
$showalbum = '[album id=1]';
$showalbum = apply_filters('the_content', $showalbum );
echo $showalbum;
?>
But, the output I want, isn't album page ... but just a list of images inside album like
<a><img src="image1.jpg"/></a>
<a><img src="image2.jpg"/></a>
<a><img src="image3.jpg"/></a>
<a><img src="image4.jpg"/></a>
...
I can do it? How, if yes?
Thanks a lot.