当前位置:首页 >> 教程资讯 >> WordPress教程

WordPress教程:文章/页面外链自动添加nofollow属性和新窗口打开

录入编辑:ejjz小编 | 发布时间:2023-01-04
首先介绍下nofollow属性,nofollow是一个HTML标签的属性值。这个标签的意义是告诉搜索引擎"不要追踪此网页上的链接或不要追踪此特定链接,简单的说,添加nofollow的部分内容不参与网站排名,便于集中网站权重。 将以下代码添加到当前使用···


首先介绍下nofollow属性,nofollow是一个HTML标签的属性值。这个标签的意义是告诉搜索引擎"不要追踪此网页上的链接或不要追踪此特定链接,简单的说,添加nofollow的部分内容不参与网站排名,便于集中网站权重。

将以下代码添加到当前使用主题的functions.php文件中即可。

代码预览

// 文章页面外链自动添加nofollow属性和新窗口打开

add_filter( the_content, cn_nf_url_parse);

function cn_nf_url_parse( $content ) {

$regexp = "<as[^>]*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 = /targets*=s*"s*_blanks*"/;

preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);

if( count($match) < 1 )

$noFollow .= target="_blank" ;

$pattern = /rels*=s*"s*[n|d]ofollows*"/;

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”),如果手动添加了这两个属性则不自动添加

上一篇:禁用wordpress自动保存文章
下一篇:WordPress之防御cc攻击(频繁F5刷新)
热门服务和内容

手机版

  • 官方微信

    扫码进入

  • 客服微信

  • 官方微信

    扫码添加

  • 高端网站设计,顶级互联网服务 Copyright © 2025 www.ejjz.cn All Rights Reserved. 辽ICP备17005629号 XML地图 一键建站
    电话咨询:0411-39550725
    在线客服咨询