I want to customize my archives to sort by month, but if it was in the previous year to group itself into a yearly category. Right now I have:
<ul><?php wp_get_archives('type=postbypost&limit=10'); ?></ul>
That shows the last 10 posts. I know that the following will sort by month:
<ul><?php wp_get_archives('type=monthly'); ?></ul>
But how do I get it to sort by year when the month is less recent than 12? I want it to look like the following:
- March 2010
- February 2010
- January 2010
- 2009
Thanks in advance.