How do I make archives display titles/excerpts only?
-
Right now, the code that controls the archive pulldown menu in my footer looks like this:
<form>
<select NAME=”site” onChange=”jumpTo(this);”>
<option selected value>Archives
<?php wp_get_archives(‘type=monthly&format=option’); ?>
</select>
</form>So, for example, if I click on “April 2006” it displays every post from April in full form (title + content). I’d like, instead, to display only the titles and excerpts (without the actual content) of my posts on the archive pages. So instead of scrolling endlessly through posts, it will be easier for the reader to browse the titles & excerpts and then select which individual posts they’d like to read by clicking them. Can anybody point me in the right direction or show me how to modify the code to achieve this effect? Hope this makes sense.
- The topic ‘How do I make archives display titles/excerpts only?’ is closed to new replies.