Typecho隐藏博主评论的两种方法

方法一:
修改TE文件Recent.php,文件路径“ /var/Widget/Comments/Recent.php ”
找到这一句

$select  = $this->select()->limit($this->parameter->pageSize) ->where('table.comments.status = ?', 'approved')

变为

$select  = $this->select()->limit($this->parameter->pageSize) ->where('table.comments.authorId = ?', '0') ->where('table.comments.status = ?', 'approved')

方法二:
TE默认主题侧栏对评论的调用如下

<?php $this->widget('Widget_Comments_Recent')->to($comments); ?>

改为下面的语句即可

<?php $this->widget('Widget_Comments_Recent','ignoreAuthor=true')->to($comments); ?>

相关文章

发表新评论