#
Typecho 2019-11-23

Typecho 中文章和评论的链接改为新窗口打开

By 52naiba 208 Views 3 MIN READ 0 Comments

评论中的链接

var/Widget/Abstract/Comments.php 

1566552886830194.png

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


文章中的链接

var/HyperDown.php 

1566552940908972.png

<a href=\"{$url}\">{$link}</a>       修改为       <a href=\"{$url}\" target='_blank'>{$link}</a>


本文由 52naiba 原创

采用 CC BY-NC-SA 4.0 协议进行许可

转载请注明出处:https://nof1.de/Typecho/55.html

TAGS: typecho

0 评论

发表评论