Plogger Support Forum - album loop problems Fri, 29 Mar 2024 09:50:33 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 album loop problems http://www.plogger.org/forum/comments.php?DiscussionID=3390&Focus=13335#Comment_13335 http://www.plogger.org/forum/comments.php?DiscussionID=3390&Focus=13335#Comment_13335 Mon, 27 Sep 2010 18:14:16 +0000 kegster
The code I came up with is below, and I can't seem to find why I am receiving a blank output. I am putting this album loop inside the picture page... so maybe this is why. I am trying to have a UL/LI list to the left of the single image displayed in picture.php. So what I have was derived from the album loop in the collection.php file. These files are being pulled from the default theme in plogger.

<?php if (plogger_has_albums()) : ?>
<ul>
<?php while(plogger_has_albums()) : plogger_load_album(); ?>
<li><a href="<?php echo plogger_get_album_url(); ?>"><?php echo plogger_get_album_name(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php else : ?>
<?php endif; ?>]]>
album loop problems http://www.plogger.org/forum/comments.php?DiscussionID=3390&Focus=13345#Comment_13345 http://www.plogger.org/forum/comments.php?DiscussionID=3390&Focus=13345#Comment_13345 Wed, 29 Sep 2010 14:28:20 +0000 jack4daniels20