使用Typecho的博主们应该有发现,当点击评论者名称时打开评论者链接默认是从当前窗口打开,降低了用户体验不说 还提高了跳失率(说不定用户被另外一个网站吸引住了不追随我怎么办?哈哈哈哈)。 下面介绍个修改评论链接从新标签打开的方法,修改起来十分方便。

修改方法

  1. 访问网站根目录var/Widget/Abstract找到Comments.php文件
  2. 找到376行左右的这句:

    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>';

    保存,完成。再去试一下,完美。

Reward this article