Combining the_excerpt with the_content
The key is to use user-defined excerpts, rather than auto-generated excerpts. For example: <div <?php post_class(); ?>> <?php // If post has defined excerpt, output it here if ( has_excerpt() ) { ?> <div class=”first-paragraph-excerpt”> <?php the_excerpt(); ?> </div> <?php } // Now output the content the_content(); ?> </div> <!– .post –> You’ll need to … Read more