WordPress文章外链接和评论链接url跳转,很多人都给自己的博客评论链接加Nofollow属性并且设置URL跳转链接。可以通过插件和通过修改robots.txt来做到,拽立网,但是对于插件和robots.txt文件修改对网站速度和搜索引擎都不是很好,所以我要纯代码解决Wordpress文章外链接和评论链接url跳转,来避免垃圾评论和垃圾链接对自己博客质量的影响!
文章外链接URL跳转演示图:
评论链接URL跳转演示图:
直接把以下全部代码复制到你的模板函数 (functions.php)
/*-----------------------------------------------------------------------------------*/
/* WordPress文章外链接和评论链接url跳转
/*-----------------------------------------------------------------------------------*/
add_filter('get_comment_author_link', 'loper_add_redirect_comment_link', 5);
add_filter('comment_text', 'loper_add_redirect_comment_link', 99);
add_filter('the_content', 'loper_add_redirect_comment_link', 99);
function loper_add_redirect_comment_link($text = '') {
$text = str_replace('href="', 'href="' . get_option('home') . '/?r=', $text);
$text = str_replace("href='", "href='" . get_option('home') . "/?r=", $text);
return $text;
}
add_action('init', 'An_redirect_comment_link');
function An_redirect_comment_link() {
$redirect = $_GET['r'];
if ($redirect) {
if (strpos($_SERVER['HTTP_REFERER'], get_option('home')) !== false) {
header("Location: $redirect");
exit();
} else {
header("Location: " . bloginfo('url') . "/");
exit();
}
}
}
提示:必须确认你主题没添加这个功能,才能使用,免费的崩溃了!

版权声明:本站原创文章,于2018年08月10日,由 拽立网 发表,共 1160 字。
打赏



ID : 牛奶君
享你所想,享你所爱!分类目录 · Categories
最新文章 · Recent Posts
随机文章 · Random Posts
最新评论 · Recent Comments
友情链接 · Links
博客统计 · Blog statistics