蘭雅sRGB 个人笔记 https://262235.xyz
提供编程和电脑应用视频教程,工具和源代码
C, C++, Python Programming, Source Code, Video

旧Hexo博客 | Github | IP定位WebAPI | Docker Hub
编程中文文档 | 网盘分享 | 中文Linux命令

个人博客在国内备案,Typecho关闭评论功能

code.png

目前的个人网站备案要求,个人博客网站不能开放评论功能。

  • Typecho后台没有关闭评论功能的设置选项,因此无法直接在Typecho里设置来实现关闭评论功能

修改代码,删去评论功能。

comments.php文件是主题的评论模块,是在网站根目录/usr/themes/你的主题/下,由post.php文件加载的。

post.png

  • 找到下面这一行:

    <?php $this->need('comments.php'); ?>
  • 添加注释

    <?php /*** 关闭评论 ***   $this->need('comments.php');  ****/ ?>
  • 评论计数器,也可以注释掉

    <span class="item">评论(<?php $this->commentsNum('0', '1', '%d'); ?>)</span>
    #  修改后
    <!----关闭评论计数---   <span class="item">评论(<?php $this->commentsNum('0', '1', '%d'); ?>)</span>   -->

    编辑文件 index.php 注释不显示评论数

     <!---不显示评论数---                 <a class="pc" href="<?php $this->permalink() ?>#comments"><i class="fa fa-comments-o"></i>评论(<?php $this->commentsNum('0', '1', '%d'); ?>)</a>  --->
本原创文章自由转载,转载请注明本博来源及网址 | 当前页面:兰雅sRGB个人笔记 » 个人博客在国内备案,Typecho关闭评论功能