卓越飞翔博客卓越飞翔博客

卓越飞翔 - 您值得收藏的技术分享站
技术文章64334本站已运行4115

自动给站外链接屏蔽权重和新窗口打开

我们在发布文章,或者添加一些友情链接的时候,很多时候会添加一些站外链接,但是我们有的时候并不希望这些站内链接会被搜索引擎抓取权重。

另外,我们在添加一些链接时,有时候会忘记点选新窗口打开,这样一两篇文章倒是不打紧,如果累计多了,对自己站点的跳出率也是会造成增长的。

所以这里介绍一款插件,可以自动给站外链接添加nofollow属性和新窗口打开站外链接,大大方便我们的操作。

Nofollow for external link

自动给文章/页面的站外链接添加nofollow属性(rel=”nofollow”),并且在新窗口打开这些链接(即添加 target=”_blank”属性)。如果已经手动给链接添加了 rel=”dofollow”,就不会添加 rel=”nofollow”;如果手动添加了 target=”_blank”,就不会重复添加。

点击上面的标题进入下载页面下载,或者直接在后台搜索插件名称安装即可。

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;
 
}
卓越飞翔博客
上一篇: 如何在RHEL、Rocky Linux和AlmaLinux系统中禁用IPv6地址
下一篇: PHP - 在新窗口中打开一个链接?

相关推荐

留言与评论(共有 0 条评论)
   
验证码:
隐藏边栏