桃子

typecho文章显示部分内容摘要

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

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

将其替换为

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

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

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

或者

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

保存即可。

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

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »