nofollow的作用是什么?
优化wordpress网站时经常使用Nofollow。它的目的是告诉搜索引擎不要跟踪这个页面上的链接或这个特定的链接,也就是说,它不会将权重导出到这个链接。
Nofollow对于WordPress优化很重要。如果文章中有外部链接地址,则有必要在链接地址中添加以下内容。
使用方法
//给文章外链添加nofollow
add_filter(‘the_content’,’web589_the_content_nofollow’,999);
function web589_the_content_nofollow($content){
preg_match_all(‘/href=”(.*?)” rel=”external nofollow” rel=”external nofollow” /’,$content,$matches);
if($matches){
foreach($matches[1] as $val){
if( strpos($val,home_url())===false ) $content=str_replace(“href=”$val””, “href=”$val” rel=”nofollow” “,$content);
}
}
return $content;
}
将上面代码添加到主题functions.php文件即可。