在当前主题的 index.php 文件中找到代码

<?php $this->content(' 阅读剩余部分 ...'); ?>
Plain text

将其替换为

<?php $this->excerpt(); ?>
Plain text

如果要按制摘要的输出字数,可以修改代码为 100

<?php $this->excerpt(100, '...'); ?>
Plain text

或者

<?php $this->summary(); ?><p class="more"><a href="<?php $this->permalink() ?>"> 阅读全文 </a></p>
Plain text

保存即可。

可以使用相同的方法修改模板的 archive.php 文件,那么在归档页也可以做到显示摘要。