This should be so easy, but I'm a little confused.
How can I show only post titles and excerpts on my "Home" page?
Thanks for your help.
eric
This should be so easy, but I'm a little confused.
How can I show only post titles and excerpts on my "Home" page?
Thanks for your help.
eric
Edit index.php and replace <?php the_content();?> with:
<?php if(is_home()) the_excerpt();
else the_content();?>This topic has been closed to new replies.