hitcounter redux

If on the index page (in the albums loop ( <?php while (next_album()): ?> ) I want to display the hitcounter for each of the albums I list,

Viewed <?php echo hitcounter("album"); ?> times

doesn't work, right ? It displays not the context album but the parent (root album in this case). Any other way to do it ?

Comments

  • call hitcounter with the following parameters:

    `$count = hitcounter('album', true, $album->getAlbumID());` where `$album` is the album for which you want the count.
  • thanks sbillard. Always very helpful, I really appreciate it.
  • acrylian Administrator, Developer
    You could have found that info in our functions guide, too...:-) In fact I built in the album id just with that purpose in mind!
Sign In or Register to comment.