首先介绍下 nofollow 属性,nofollow 是一个 HTML 标签的属性值。这个标签的意义是告诉搜索引擎"不要追踪此网页上的链接或不要追踪此特定链接,简单的说,添加 nofollow 的部分内容不参与网站排名,便于集中网站权重。
将以下代码添加到当前使用主题的 functions.php 文件中即可。

代码预览

  1. // 文章页面外链自动添加 nofollow 属性和新窗口打开
  2. add_filter( 'the_content', 'cn_nf_url_parse');
  3. function cn_nf_url_parse( $content ) {
  4. 	$regexp = "<as[^>]*href=("??)([^" >]*?)1[^>]*>";
  5. 	if(preg_match_all("/$regexp/siU", $content, $matches, PREG_SET_ORDER)) {
  6. 		if( !empty($matches) ) {
  7. 			$srcUrl = get_option('siteurl');
  8. 			for ($i=0; $i < count($matches); $i++)
  9. 			{
  10. 				$tag = $matches[$i][0];
  11. 				$tag2 = $matches[$i][0];
  12. 				$url = $matches[$i][0];
  13. 				$noFollow = '';
  14. 				$pattern = '/targets*=s*"s*_blanks*"/';
  15. 				preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
  16. 				if( count($match) < 1 )
  17. 					$noFollow .= ' target="_blank" ';
  18. 				$pattern = '/rels*=s*"s*[n|d]ofollows*"/';
  19. 				preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
  20. 				if( count($match) < 1 )
  21. 					$noFollow .= ' rel="nofollow" ';
  22. 				$pos = strpos($url,$srcUrl);
  23. 				if ($pos === false) {
  24. 					$tag = rtrim ($tag,'>');
  25. 					$tag .= $noFollow.'>';
  26. 					$content = str_replace($tag2,$tag,$content);
  27. 				}
  28. 			}
  29. 		}
  30. 	}
  31. 	$content = str_replace(']]>', ']]>', $content);
  32. 	return $content;
  33. }

以上代码意思是,自动给外链自动添加 nofollow 属性 (rel=」nofollow」) 和新窗口打开属性 (target=」_blank」),如果手动添加了这两个属性则不自动添加