如题,以下代码即可帮你完成在评论链接添加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; }