Typecho博客中的评论者的网址在新窗口打开的代码,这篇文章只适合代码小白看,其他人绕道吧。其实就是加了个 _blank 标签(让链接在新窗口打开)。
方法如下:
\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>';
保存,OK!