Inside the [i]while (next_album()[/i] loop place a call to `getNumAlbums()` where you want the number to appear, like this:
`
<?php while (next_album()): ?>
..........
...........
<?php echo getNumAlbums(); ?>
...........
...........
<?php endwhile; ?>
`