自動添加nofollow屬性和新窗口打開WordPress文章/頁面的站外鏈接

站外鏈接的SEO還是比較重要的,今天分享下 自動添加nofollow屬性和新窗口打開WordPress文章/頁面的站外鏈接 的方法。

直接安裝啟用 Nofollow for external link 外掛,或者將下面的代碼添加到當前主題的 functions.php 文件即可:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
add_filter( 'the_content', 'cn_nf_url_parse');
 
function cn_nf_url_parse( $content ) {
 
	$regexp = "<a\s[^>]*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 = '/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;
 
}

add_filter( ‘the_content’, ‘cn_nf_url_parse’); function cn_nf_url_parse( $content ) { $regexp = "<a\s[^>]*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 = ‘/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; }

最終效果:自動給文章/頁面的站外鏈接添加nofollow屬性(rel=”nofollow”),並且在新窗口打開這些鏈接(即添加 target=”_blank”屬性)。如果已經手動給鏈接添加瞭 rel=”dofollow”,就不會添加 rel=”nofollow”;如果手動添加瞭 target=”_blank”,就不會重復添加。

相關推薦:

自動給WordPress文章或迴響內容的站外鏈接添加Nofollow屬性

WordPress為指定分類的所有鏈接添加nofollow屬性

在新窗口打開WordPress文章中的所有鏈接

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *