批量设置WordPress外部链接添加nofollow标签

老乐 优化维护4字数 1496阅读4分59秒阅读模式

从SEO传递权重角度看,如果我们的页面中有传递外部URL的时候,如果有加上 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 nofollow\" ",$content);
}
}
return $content;
}
//文章外链nofollow结束

这里,我们可以直接添加到Functions.php中。

但是这里有一个弊端,没有新窗口打开,这里我们可以既添加nofollow且也新窗口打开。

//添加外部链接nofollow且新窗口打开 http://www.zhujipingjia.com/addurl-nofollow.html
add_filter( 'the_content', 'auto_nofollow_for_external_link');
function auto_nofollow_for_external_link( $content ) {
    $regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\[^>]*>";
    if(preg_match_all("/$regexp/siU", $content, $matches, PREG_SET_ORDER)) {
        if( !empty($matches) ) {
            $srcUrl = get_option('siteurl');
            for ($i=0; $i < count($matches); $i++)
            {
                $tag = $matches[$i][0];
                $tag2 = $matches[$i][0];
                $url = $matches[$i][0];
 
                $noFollow = '';
 
                $pattern = '/target\s*=\s*"\s*_blank\s*"/';
                preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
                if( count($match) < 1 )
                    $noFollow .= ' target="_blank" ';
 
                $pattern = '/rel\s*=\s*"\s*[n|d]ofollow\s*"/';
                preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
                if( count($match) < 1 )
                    $noFollow .= ' rel="nofollow" ';
 
                $pos = strpos($url,$srcUrl);
                if ($pos === false) {
                    $tag = rtrim ($tag,'>');
                    $tag .= $noFollow.'>';
                    $content = str_replace($tag2,$tag,$content);
                }
            }
        }
    }
    $content = str_replace(']]>', ']]>', $content);
    return $content;
}

一般我们选择后者。

投上你的一票
 最后更新:2024-10-11
  • 本文由 老乐 发表于 2024年9月25日 08:00:14
  • 转载请务必保留本文链接:https://www.zhujipingjia.com/addurl-nofollow.html
  • 自动添加Nofollow