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')
文章源地址:看这里
赏
转载本站原创文章请注明:文章转自 挨踢路,链接: https://888929.tm7j5.group/articles/1439.html
折腾起typecho
呵呵,这是必须的
WP里面也是这么搞的吧
我之前用WP就不是这样子的....