关键是使用user-defined excerpts, 而不是自动生成的摘录。例如:
<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 -->
您需要根据需要进行调整,但这将输出一个包含摘录的div(如果存在),然后输出内容。