Forums
(@carnyfeet)
16 years, 3 months ago
I found this post a little late, but I made the following change to the cat-posts.php file that others might find useful.
Find:
the_excerpt();
Replace with:
if ($post->post_excerpt!=NULL) { echo $post->post_excerpt; } else { the_excerpt(); }