首页 vps [ 编辑 ]

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


1、首页显示文章摘要
在当前主题的 index.php 文件中找到代码

<?php $this->content(‘阅读剩余部分…’); ?>

将其替换为

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

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

<?php $this->excerpt(100, ‘…’); ?>

2、分类目录显示文章摘要
archive.php中找到

<?php $this->content(‘阅读剩余部分…’); ?>

将其替换为

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

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



文章评论