共计 569 个字符,预计需要花费 2 分钟才能阅读完成。
今天给大家说说,由 www.fczbl.vip 二开的 Kratos 主题。在设置评论添加 go 跳转时,网上的任何代码都没用的解决方法。
首先找到主题目录 \Kratos-master\inc\core.php,在最下面找到下面这段代码:
//New window-comment author link
function comment_author_link_window(){
global $comment;
$url = get_comment_author_url();
$author = get_comment_author();
if(empty($url)||'http://'==$url||'https://'==$url)
$return = $author;
else
$return = "<a href='http://game.qicaiyun.top/go.php?url=".$url."' target='_blank'>".$author."</a>"; // 这里的"http://game.qicaiyun.top/go.php?url=" 改成你自己的
return $return;
}
add_filter('get_comment_author_link','comment_author_link_window');
修改完上传覆盖,再去测试一下吧,完美解决。
正文完