Typecho博客首页和分类目录只显示文章摘要

Typecho · 2019-05-28 · 255 人浏览

1、首页显示文章摘要
在index.php文件找到代码

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

将其替换为
<?php $this->excerpt(); ?>

如果要按制摘要的输出字数,可以修改代码为
<?php $this->excerpt(300, '...'); ?>

通过修改300来控制输出的字节
2、分类目录显示文章摘要
在archive.php中找到
<?php $this->content('阅读剩余部分...'); ?>

将其替换为
<?php $this->excerpt(); ?>

保存文件即可显示摘要,即博客首页和分类目录只显示文章摘要。

typecho 博客