共计 1005 个字符,预计需要花费 3 分钟才能阅读完成。
今天来说说,wordpress 如何给文章评论里的链接,添加 go 跳转,使其有利于 SEO。首先找到模板文件中的“functions.php”添加以下代码:
// 评论链接 url 跳转
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="', 'target="_blank"href="'.get_option('home').'/go.php?url=', $text );
$text = str_replace("href='", "target='_blank'href='".get_option('home')."/go.php?url=", $text );
return $text;
}
add_action('init', 'redirect_comment_link');
function redirect_comment_link(){
$redirect = $_GET['url'];
if($redirect){
if(strpos($_SERVER['HTTP_REFERER'],get_option('home')) !== false){
header("Location: $redirect");
exit;
}
else {
header("Location: https://www.qicaiyun.top/"); // 此处!请修改成自己的链接
exit;
}
}
}
需要注意的是:
$text = str_replace('href="', 'target="_blank"href="'.get_option('home').'/go.php?url=', $text );
$text = str_replace("href='", "target='_blank'href='".get_option('home')."/go.php?url=", $text );
有的人使用的是静态页面,所以应把
/go.php?url=
改为 /go.html?url=
,否则会跳转不成功。至于 go.php 内代码,网上一大堆,请自行百度吧。