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

1、首页显示文章摘要

在index.php文件找到代码
<?php $this->content('阅读剩余部分...'); ?>
将其替换为
<?php $this->excerpt(); ?>
如果要按制摘要的输出字数,可以修改代码为
<?php $this->excerpt(300, '...'); ?>
通过修改300来控制输出的字节

2、分类目录显示文章摘要

在archive.php中找到
<?php $this->content('阅读剩余部分...'); ?>
将其替换为
<?php $this->excerpt(); ?>
保存文件即可显示摘要,即博客首页和分类目录只显示文章摘要。

底部增加备案号

1、在主题文件夹下 【blog/usr/themes/default】的footer.php 添加代码:
<?php _e('<a href="https://beian.miit.gov.cn/#/Integrated/recordQuery">你的备案号</a>'); ?>.

标签: none

添加新评论