当前位置:首页>网站建设>自动为wordpress外部链接加上nofollow

自动为wordpress外部链接加上nofollow

释放双眼,带上耳机,听听看~!

防止我们日常内容输出中出现外部的网站链接总是,我们可以在wordpress主题核心函数文件内添加以下代码来自动识别外部链接,并且加上nofollow功能,防止网站权重流失或是出现降权的问题。

将以下代码添加入functions.php文件内

// 文章外部链接加上nofollow
add_filter( 'the_content', 'cn_nf_url_parse');
function cn_nf_url_parse( $content ) {
 
  $regexp = "<as[^>]*href=("??)([^" >]*?)1[^>]*>";
  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 = '/targets*=s*"s*_blanks*"/';
        preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
        if( count($match) < 1 )
          $noFollow .= ' target="_blank" ';
 
        $pattern = '/rels*=s*"s*[n|d]ofollows*"/';
        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;
 
}
欢迎访问秀主题博客,分享简单实用WP教程
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

给TA打赏
共{{data.count}}人
人已打赏
网站建设

WordPress个人资料添加自定义字段input表单

2024-10-31 15:55:45

电脑系统

微软下一代Windows大变革!“真AI PC”要来了

2024-3-31 13:26:25

温馨提示:

1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:971318156@qq.com,我们将第一时间处理!

2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。

3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索