I am linking to my archives something like this:
domain.com/?m=2007
My archive.php has this:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="blogtitletop"></div>
<h2 class="entrytitle"><span class="date"><?php the_time('m/d/y') ?></span><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="blog_entry" id="post-<?php the_ID(); ?>">
</div>
<div class="blogbottom">
</div>
I want it to list:
Jan
post
post
Feb
post
Mar
post
etc.
Is there a parameter I can feed it to do it?