Alright, I was starting on the code for my blog today when I ran into a little issue. However, before I ask my question, it my help if I actually explain what the functionality I am hoping to achieve. (you can also view my header comp at http://louisstephens.cc/comps/blog.png )
In my header, I am going to have the year with all the months listed under it. The current month will be selected showing all the posts for that month. However, the other months will also be selectable, and doing so will fade out the current month's post to show the newly selected month's posts (as well as changing the "active" state of the selected month). When a new year comes around, you can simply click on a side arrow (that will be next to the year), and it will slide the header over to that year and month set).
Maybe this can't be done, but I was having an issue. For the life of me, I can not figure out how to show all the months regardless of them containing any posts. I know I can use:
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
But if no posts are present, no months show up. Has anyone ever figured out a way around this, or have any clue of what can be done to achieve my desired effect?
