Typecho博客评论中网址在新窗口打开

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!

版权声明:本站部分文章为网络转载,文章结尾已注明出处,如侵犯您的权益请联系我们删除。

联系我们:turbochao@126.com

百度官方分享:让百度蜘蛛抓取网页的四种方式