Typecho博客让文章列表页只显示摘要的方法

2023-02-19,,

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

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

 

将其替换为

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

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

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