Only Monthly archives to show a list of posts
-
I’m hacking wordpress, and a wordpress theme, to be used as a method to publish security reports online for one of my clients. I’ve easily figured out how to make an archive page and customize it via some examples, but I have not figured out how to customize ALL the code based on resulting choice for that archive page — most specifically the monthly links and limiting it to the current monthly choice:
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h2 class="entrydate">Archive for <?php the_time('F, Y'); ?></h2>-
<?php wp_get_archives('type=daily'); ?>
How do I limit that to only call the daily archives for that specific month? Thank you:)!!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Only Monthly archives to show a list of posts’ is closed to new replies.