也想出现在这里?联系我们

wordpress文章外链自动添加nofollow属性

2014.12.10 wordpress教程 ,
  • 文章介绍
  • 升级版本
  • 评价&建议

做SEO的大家都知道如果文章中过多的外链会分散了该页面的权重,这样是不利于网站排名的。所以网站内页最好是尽量不要链接向外部。但是在某些情况下我们不得不链接向外部,那么该如何处理呢?其实我们可以给外部链接加上nofollow属性,对蜘蛛声明不要爬取这条链接。这样就可以有效的解决权重流失的问题。但是在编辑文章中一条链接一条链接的加nofollow属性工作量实在太大了,小V就来教大家让wordpress给文章中的外链自动添加nofollow属性。

  1. add_filter( 'the_content', 'v7v3_seo_wl');
  2. function v7v3_seo_wl( $content ) {
  3.     $regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>";
  4.     if(preg_match_all("/$regexp/siU"$content$matches, PREG_SET_ORDER)) {
  5.         if( !emptyempty($matches) ) {
  6.             $srcUrl = get_option('siteurl');
  7.             for ($i=0; $i < count($matches); $i++)
  8.             {
  9.                 $tag = $matches[$i][0];
  10.                 $tag2 = $matches[$i][0];
  11.                 $url = $matches[$i][0];
  12.                 $noFollow = '';
  13.                 $pattern = '/target\s*=\s*"\s*_blank\s*"/';
  14.                 preg_match($pattern$tag2$match, PREG_OFFSET_CAPTURE);
  15.                 ifcount($match) < 1 )
  16.                     $noFollow .= ' target="_blank" ';
  17.                 $pattern = '/rel\s*=\s*"\s*[n|d]ofollow\s*"/';
  18.                 preg_match($pattern$tag2$match, PREG_OFFSET_CAPTURE);
  19.                 ifcount($match) < 1 )
  20.                     $noFollow .= ' rel="nofollow" ';
  21.                 $pos = strpos($url,$srcUrl);
  22.                 if ($pos === false) {
  23.                     $tag = rtrim ($tag,'>');
  24.                     $tag .= $noFollow.'>';
  25.                     $content = str_replace($tag2,$tag,$content);
  26.                 }
  27.             }
  28.         }
  29.     }
  30.     $content = str_replace(']]>', ']]>', $content);
  31.     return $content;
  32. }

将以上代码加入到当前主题的functions.php文件即可实现,换主题的时候记得把这段代码加到新主题里噢,不然换主题后文章中的外部链接就会变成无nofollow属性的了。

 

教程转至V7V3-奶嘴!

有用1
  • 2014.12.10初次和大家见面了!

等待您对该主题的建议

发表评论

还能输入240个字

Hi, 欢迎加入Wordpress技术交流群,带你装逼带你飞!

我要入群
也想出现在这里?联系我们
wordpress加速

我来推荐一个更牛逼的给你看看?

  • 猛戳我吧