为什么要给评论链接添加一个跳转页面呢?我们站点上有效的评论挂的网站链接但是站长都不在做下去了,所以我们这样就造成了很多死链,但是这样很有可能影响自己网站的SEO。虽然加了nofollow标签,但是百度,360,搜狗到底遵守没有很难说。所以给WordPress评论链接添加跳转页面是很有必要的。那么如何来添加跳转页面呢?
1.首先将以下代码添加到当前使用主题的functions.php文件中即可。
//评论者链接重定向 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/?url=', $text); $text=str_replace("href='", "href='".get_option('home')."/go/?url=", $text); return $text; }
2.然后下载index.php文件
3.在网站的根目录创建一个go文件夹,并把index.php上传进去即可。
PS:记得在robots.txt文本中添加 Disallow: /go/