As our WordPress blogs at thegazz.com have aged, the archives list of past posts has grown really, REALLY long. How do I set a limit on the number of archive options that are displayed, like archives for just the past year?
As our WordPress blogs at thegazz.com have aged, the archives list of past posts has grown really, REALLY long. How do I set a limit on the number of archive options that are displayed, like archives for just the past year?
This will get the last twelve months that have posts in them:
<?php wp_get_archives('type=monthly&limit=12'); ?>
http://codex.wordpress.org/Template_Tags/wp_get_archives#Last_Twelve_Months
This topic has been closed to new replies.