今天弄博客的时候,发现点击头像不会跳转,还有点击名字是直接在原页面跳转,没有新窗口打开,于是手残党就开始修改了!

修改教程

首先进入/var/Widget/Abstract/Comments.php下载下来,找到下面的代码:

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>';
之后就可以实现链接新窗口打开了。

修改完毕之后觉得神清气爽,但是不对劲啊,我点头像不会跳转啊,于是继续摸索,emmmm,成功找到代码:

echo '<img class="avatar" src="' . $url . '" alt="' . $this->author . '" width="' . $size . '" height="' . $size . '" title="' . $this->author . '" />'

替换为:

echo '<a href="' , $this->url , '"' , ($noFollow ? ' rel="external nofollow"' : NULL) , ' target="_blank">' , '<img class="avatar" src="' . $url . '" alt="' . $this->author . '" width="' . $size . '" height="' . $size . '" title="' . $this->author . '" />' , '</a>';

这样子就实现了所有的效果了,具体效果请查看本博客啦qwq,博主吃饭去了~

最后修改:2021 年 04 月 10 日

感谢看完,可以点个赞~请作者喝杯咖啡~ヾ(◍°∇°◍)ノ゙❤