共计 511 个字符,预计需要花费 2 分钟才能阅读完成。
如题,以下代码即可帮你完成在评论链接添加 go 跳转。找到你主题目录下的 ”functions.php” 文件,添加以下代码上传覆盖即可。
/* WordPress 评论者链接添加 go 跳转
/*-----------------------------------------------------------------------------------*/
add_filter('get_comment_author_link', 'add_redirect_comment_link', 5);
add_filter('comment_text', 'add_redirect_comment_link', 99);
function add_redirect_comment_link($text = ''){$text=str_replace('href="', 'href="'.get_option('home').'/go.php?url=', $text);
$text=str_replace("href='", "href='".get_option('home')."/go.php?url=", $text);
return $text;
}
正文完