That’s builtin already, perhaps being a little more specific in what your wanting to accomplish.
Hmm, maybe I removed it, when I was editing it heh.
Can you please tell me the line I require to generate the list?
Just so it shows something like:
FEBRUARY 2008
JANUARY 2008
DECEMBER 2007
etc.
Thankyou.
Have a look at the template tag wp_get_archives
<?php wp_get_archives('type=monthly&limit=12'); ?>
This will display the last twelve months, remove the limit and is will show every month that has a post in it since you started blogging.
Brilliant jeremy. Many thanks!
Is there a list of the wp_ like functions anywhere?
Here is most of the template tags available.
http://codex.wordpress.org/Template_Tags
Brilliant, you’re a legend!