I have this site that I took over and on the home page of the blog, it should show all of the first post, then excerpts after that (accomplished).
On the second etc pages of posts, it should just show excerpts, but instead it is showing the full first post then excerpts. Any ideas?
Here is what it is using to supposedly make this happen:
I have this at the beginning of the loop in the home.php:
<?php if (have_posts()) : ?>
<?php $i = 0; while (have_posts()) : the_post(); $i++; ?>
Then this for the entry:
<?php
if($i == 1)
the_content('Read the rest of this entry »');
else
the_excerpt();
?>
but obviously something is amiss. The link is here: