首页» 教程» Wordpress教程» WordPress 新窗口打开文章/站外链接-添加nofollow属性-网站SEO(十三)

WordPress 新窗口打开文章/站外链接-添加nofollow属性-网站SEO(十三)

Hello,嗨,大家好,我是哈喽猿。

这里是哈喽猿网

今天推送的是wordpress教程的文章,感谢您宝贵的时间阅读

WordPress SEO优化目录:

1.WordPress 外链跳转效果

2.WordPress 百度熊掌号连接自动提交   

3.WordPress HTTPS提示危险网站修复   

4.WordPress 优化网站固定链接   

5.WordPress 网站地图百度Sitemap   

6.WordPress 代码实现百度熊掌自动提交   

7.WordPress 伪静态规则   

8.WordPress 标签/关键词加链接,百度蜘蛛爬行   

9.WordPress 外链转内链插件,增加权重   

10.WordPress 404页面重定向到最相近的地址

11.WordPress 隐藏广告联盟链接/内链转外链

12.WordPress 站内页面优化   

13.WordPress 新窗口打开文章/站外链接-添加nofollow属性   

14.WordPress 检测百度是否实录   

15.WordPress 301重定向   

16.WordPress 旧链接自动跳转到新链接   

17.WordPress 网站压缩,批量调整上传图片的最大宽高   

18.WordPress 图片自动添加标题和ALT属性   

19.WordPress 关键词自动加链接   

20.WordPress 站点添加 robots.txt

21.WordPress 百度熊掌号自动提交   

22.WordPress 统计404错误和404错误重定向   

23.WordPress 统计用户搜索的关键词

 

  

网站外链接的SEO仍然更重要。今天,自动添加no追随者属性和新窗口的方法来打开WordPress文章/页面的站点外链接,并在鱼源代码的网络共享下进行。

直接安装Nofollow for external link插件,或者为当前主题将以下代码添加到Functions.php文件中:

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;
 
}

最终效果:自动向文章/页面的网站外链接添加nolow属性(rel=”nofollow”),并在新窗口中打开它们(target="_black"属性)。如果手动向链接添加了rel="dofollow",则不会添加rel="nolow";如果手动添加了target="_space",则不会重复它。

有关建议:

自动向指向WordPress文章或评论的站点外链接添加NOWLOW属性

WordPress为指向指定类别的所有链接添加no追随者属性

打开新窗口中WordPress文章中的所有链接

 

发表评论

0 评论

提供最优质的资源集合

站长留言