Is there a way to get the archives to display without the year? using wp_get_archives() displays:
September 2008
and I'd like it to be just:
September
Thanks
Is there a way to get the archives to display without the year? using wp_get_archives() displays:
September 2008
and I'd like it to be just:
September
Thanks
Have you tried limiting the number of months?
<?php wp_get_archives('type=monthly&limit=12'); ?>
It wouldn't make sense to have 2 September archives, now wouldn't it?
This topic has been closed to new replies.