WordPress自动外部链接加上nofollow标签且新窗口打开
![]() | ![]() | ![]() | ![]() |
| 【性价之王】 | 【线路之王】 | 【价格之王】 | 【配置之王】 |
| 【免费之王】 | 【香港首推】 | 【梯子之王】 | 【独服之王】 |

如果我们网站可能需要特殊的细节注意问题,在内容文章之间跳转到外部地址,可能需要注意权重传递。这里我们可以将链接标签加上nofollow标签。我们可以在加上每个外部链接的时候自己手工添加,也可以用下面的办法实现自动添加nofollow标签,以及将这些外部链接全部用在新窗口打开。
// 内容页nofollow标签属性以及新窗口打开
add_filter( \’the_content\’, \’cn_nf_url_parse\’);
function cn_nf_url_parse( $content ) {
$regexp = \”<a\\s[^>]*h=(\\\”??)([^\\\” >]*?)\\\\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;
}
将代码加入到当前主题的Functions.php文件中,然后我们只要内容中有外部链接,会自动加上nofollow和_blank标签属性。
[Nofollow标签]历史优惠活动内容
猜你可能想看的VPS
- Sapinet→€3 月 2 核 2GB 内存 30GB NVMe 空间虚拟空间(主机)
- [11.11]滴滴云秒杀→2C4G2M 三年 468 元 2C4G5M 全球[VPS测评]
- Vultr Debian 8 及 Centos7 系统 VPS 安装破解全球[VPS测评]
- NameSilo→.xyz .top 等域名 首年 0.99 美金 一次全球[VPS测评]
- js 判断 undefined 类型无效的解决办法全球[VPS测评]
- HKServerSolution CN 常州高带宽 VDS,电信联通线路全球[VPS测评]
- DfrgFat.exe 应用程序错误的解决方法全球[VPS测评]
- jquery 设置按钮的 disabled 属性 jquery 设置按钮全球[VPS测评]
- 便宜 $25 年 2 核 CPU 3G 内存 40G SSD 5T 流量全球[VPS测评]
- 企鹅小屋→180 元 年 512MB 内存 400GB 空间 1TB 流虚拟空间(主机)
- 疯狂猜成语 图猜成语日历上三个日子是太阳剩下的都是冰块是什么成语?全球[VPS测评]
- XIU 主题在首页最新发布文章标题后添加 NEW 图标 XIU 主题美化全球[VPS测评]
- WordPress 网站自定义广告位占位/出租代码全球[VPS测评]
- Cloudcone双十一特价便宜VPS,KVM架构,1Gbps带宽,年付全球[VPS测评]
- OrderBilisim → 1.8$ 月 土耳其 2C2G30G硬盘 全球[VPS测评]
- Linux VPS一键更换软件源脚本(国内VPS换源)全球[VPS测评]
- Fatal error: Allowed memory size of 全球[VPS测评]
- 6种样式社交论坛网站HTML5模板 - Social全球[VPS测评]
- 虾皮跨境电商怎么样?虾皮跨境电商靠谱吗?全球[VPS测评]
- 岚云:香港安迅/沙田CN2直连,75折起,1核/1G/30G SSD/1香港VPS[主机]
- 全球云lovps,香港CN2线路vps 新品七折月付49元香港VPS[主机]
- CombCloud,香港沙田cn2vps终身七折起,高质量网络稳定低延迟香港VPS[主机]
- 性价比最高的VPS网络评测全球[VPS测评]
- 极光KVM:香港CN2大带宽vps6折优惠,美国CN2 GIA套餐年付低美国VPS[主机]
- ExCloud:1核256M存/8GB SSD空间/100GB流量/OV虚拟空间(主机)
- 二三互联年末回馈:香港/美国云服务器新购特价促销,优惠码可打76折美国VPS[主机]
- 疯鱼云怎么样?香港CN2VPS首月14元,续费19元香港VPS[主机]
- 华为S2300 系列交换机如何修改密码?全球[VPS测评]
- 青云互联:香港CN2 GIA VPS,月付15.2起;日本CN2 VPS日本VPS[主机]
- 金斗云:全场8折起,美国圣何塞高防VPS,20元/月;香港CN2 VPS美国VPS[主机]
转载请注明原文地址:http://140.238.13.167:12355/read-39946.html











