Typecho:边栏最新评论不显示博主的评论

找到 /var/Widget/Comments/Recent.php 在原有的:(0.8的版本在43行)

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

中间插入一行:

->where('table.comments.authorId = ?', '0')

变成如下代码:

$select  = $this->select()->limit($this->parameter->pageSize)
->where('table.comments.authorId = ?', '0')//屏蔽自己的评论
->where('table.comments.status = ?', 'approved')

文章源地址:看这里

查看 comments Typecho的相关文章

转载本站原创文章请注明:文章转自 挨踢路,链接: https://itlu.net/articles/1439.html

评论列表(4条)

  1. 折腾起typecho

    1. 呵呵,这是必须的

  2. WP里面也是这么搞的吧

    1. 我之前用WP就不是这样子的....

添加评论

您好,#请填信息# 确定

打赏请博主喝水
LOADING