[短代码]为文章中链接添加nofollow

图片[1]-[短代码]为文章中链接添加nofollow-月宅酱的博客


为自己文章中的所有外链自动加nofollow防止权重流失。

//给文章外链添加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\" rel=\"external noopener nofollow\" ",$content);
}
}
return $content;
}

 

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 共3条
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容