免插件实现WordPress外链go跳转

2022-10-11 20:42:16 193 0
魁首哥

为了假装在做SEO,避免权重分散,今天就给大家分享一个免插件实现 WordPress 外链go跳转,非常简单。

步骤一:

在网站根目录新建一个go.php文件,记得将链接改为你的,代码如下:


< html >



<?php echo $title;?>



页面正在安全跳转中,请稍候

步骤二:

将下面代码加到主题的functions.php文件中:

//给外部链接加上go跳转
add_filter('the_content','the_content_nofollow',999);
function the_content_nofollow($content)
{
preg_match_all('//',$content,$matches);
if($matches){
foreach($matches[2] as $val){
if(strpos($val,'://')!== false  && strpos($val,home_url())===false && !preg_match('/\.(jpg|jepg|png|ico|bmp|gif|tiff)/i',$val)){
$content=str_replace("href=\"$val\"", "href=\"".home_url()."/go.php?url=$val\" ",$content);
}
}
}
return $content;
} 
收藏
分享
海报
0 条评论
193
上一篇:PHPS国内现状 下一篇:站主福利:1G空间不限流量免费用,支持300M数据库搭建测试网站

本站已关闭游客评论,请登录或者注册后再评论吧~

忘记密码?

图形验证码