某些时候我们处于SEO考虑需要对WordPress文章中的外链添加nofollow标签来告诉搜索引擎不要追踪此链接,我们可以手动添加这个标签,但是如果一篇文章外链较多的话会显得非常麻烦,也不利于提高工作效率。那么这里分享一个如何为wordpress文章的外链自动添加nofollow的方法,希望对大家有用。

在网上找了很多代码要么就是错误,要么就是不可用。不过通过最终的努力找到了正确的代码,亲测可用。

基础玩法

方法非常的简单,只需要在你的主题目录下的functions.php中添加下面的代码即可:

//给文章外链添加nofollow
add_filter('the_content','web589_the_content_nofollow',999);
function web589_the_content_nofollow($content){
preg_match_all('/href="(.*?)"/',$content,$matches);
if($matches){
foreach($matches[1] as $val){
if( strpos($val,home_url())===false ) $content=str_replace("href=\"$val\"", "href=\"$val\" target=\"_blank\" rel=\"external nofollow\" ",$content);
}
}
return $content;
}
//文章外链nofollow结束

高级玩法

另外,可以配合go.php文件,实现外链本地化打开。
效果如:https://www.mingdan.top/go.php?url=https://www.yundun.com/
特殊版go.php文件:https://www.tiezi.yz/archives/1214.html
整合后的代码

//给文章外链添加nofollow
add_filter('the_content','web589_the_content_nofollow',999);
function web589_the_content_nofollow($content){
preg_match_all('/href="(.*?)"/',$content,$matches);
if($matches){
foreach($matches[1] as $val){
if( strpos($val,home_url())===false ) $content=str_replace("href=\"$val\"", "href=\"/go.php?url=$val\" target=\"_blank\" rel=\"external nofollow\" ",$content);
}
}
return $content;
}
//文章外链nofollow结束
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。