The default Wordpress 1.5 theme evidently offers a daily archive option, but I don't know how to select it. The archive.php theme includes the code:
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>
but how can I make "is_day()" true? And where would I find it?
My blog url is moralorigins.com and I will be posting a long essay once a week (about 2000 words each), so I want only the latest post on the "Home" page and only one post on each archive page. The archive listing should reference each post individually, showing its date and title, and the listing should be located on a separate "Archive List" page, rather than in a sidebar. Can I do that in the default theme? I have an elemetary knowledge of HTML.
Thanks,
Dick (a blog newbie who's trying to learn fast)
Thanks