output annual archive in monthly groupings
-
I am linking to my archives something like this:
domain.com/?m=2007My 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
postetc.
Is there a parameter I can feed it to do it?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘output annual archive in monthly groupings’ is closed to new replies.