我们都知道,如果网站内容中有外部链接会导致权重的降低和导出,这里一般我们对外部链接采用跳转方式,这样可以实现降低权重的流失。如果手工设置的话就显得比较麻烦,在这篇文章中,麦子整理这个方法可以实现自动将内容部分的外部链接实现跳转方式导出到外部链接。
1、添加脚本到当前主题functions.php
add_filter('the_content','go_url',999);
function go_url($content){
preg_match_all('/href="(.*?)"/',$content,$matches);
if($matches){
foreach($matches[1] as $val){
if( strpos($val,home_url())===false&&strpos($val,"JavaScript:void(0)")===false )
$content=str_replace("href="$val"", "rel="nofollow" target="_blank" href="" . get_bloginfo('wpurl'). "/go?url=" .base64_encode($val). """,$content);
}
}
return $content;
}
2、添加go文件夹到网站根目录,以及文件夹中添加index.php
<?php $url = $_GET['url']; $url = base64_decode($url); ?>
<meta charset="utf-8" />
<meta http-equiv="refresh" content="0.1;url=<?php echo $url; ?>">
将上面代码添加到index.php文件中。
这样,我们可以将所有的内容部分外链接都加上nofollow标签。