跳过正文
  1. Blogs/

备忘 - 解决评论用户链接问题

·90 字·1 分钟· ·
日志 Cheat-Comment-User-Link-Solution 链接 新窗口 Target Blank
作者
大大的小蜗牛
机会总是垂青于有准备的人!
目录

Typecho 默认的评论用户链接不是在新窗口打开的,修改 \var\Widget\Abstract\ 夹下的 Comments.php 文件,找到 373 行左右的这句:
原始:

echo '<a href="' , $this->url , '"' , ($noFollow ? ' rel="external nofollow"' : NULL) , '>' , $this->author , '</a>';

修改为:

echo '<a href="' , $this->url , '"' , ($noFollow ? ' rel="external nofollow"' : NULL) , ' target="_blank">' , $this->author , '</a>';

Load Giscus
or