Get Number Of Sub-albums In Album

Hi

On pages where album thumbnails are displayed (gallery page, search page etc.) I would like to display the number of sub-albums that each album contains.

What would be the best way to get this information for each album?

Comments

  • fretzl Administrator, Developer
    Inside the while (next_album() loop place a call to `getNumAlbums()` where you want the number to appear, like this:

    `
    <?php while (next_album()): ?>
    ..........
    ...........
    <?php echo getNumAlbums(); ?>
    ...........
    ...........
    <?php endwhile; ?>
    `
  • Exactly what I was looking for, thanks for the help :)
Sign In or Register to comment.