我的个人网络私密空间

WordPress站外链接自动添加target="_blank"与rel="nofollow"属性方法

学过HTML的朋友应该都知道,a标签超链接中的target=”_blank”属性是以新标签打开链接的意思,而rel=”nofollow”属性是告诉搜索引擎不要传递网站权重。

所以,我们有必要给WordPress网站中的站外链接添加上target=”_blank”与rel=”nofollow”两个属性,具体实现方法如下:

/* 自动给站外链接添加nofollow属性和新标签打开属性 https://www.yufeiye.com*/
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;
}

把上面的代码添加到WordPress当前使用主题的模板函数(默认为:function.php)文件中即可。

这样,我们下次编辑发布文章添加外部链接时,就不用打开“在新窗口打开”的按钮了,代码会自动帮我们在链接中添加target=”_blank”与rel=”nofollow”两个属性的。

WordPress链接“在新窗口打开”按钮
不用打开“在新窗口打开”的按钮
看完该文章有什么感受?
转载请注明来源:雨飞叶 » WordPress站外链接自动添加target="_blank"与rel="nofollow"属性方法

评论 抢沙发

理智防人:耳听可能假,眼见未必实。
安全拒绝:我要想清楚,明天答复你。

网站建设与资源变现上网学习找资源教程