您现在的位置是:WordPress无双色球可靠的投注网站推荐在线投注插件外部链接自动添加nofollow标签 >>正文
WordPress无双色球可靠的投注网站推荐在线投注插件外部链接自动添加nofollow标签
沉潜刚克网973人已围观
简介这样所有的外部链接就会自动加上nofollow标签。当然目前一些wordpress主题设置有这个nofollow标签功能。在技术层面是有传递出去权重。//文章自动nofollowadd_filter(...
这样所有的外部链接就会自动加上nofollow标签。当然目前一些wordpress主题设置有这个nofollow标签功能。在技术层面是有传递出去权重。
//文章自动nofollowadd_filter( 'the_content', 'tin_seo_wl');function tin_seo_wl( $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;}
添加到当前主题Funcions.php 文件中,有时内容会引用或分享一些外部链接地址, 在wordpress写文章时,
Tags:
相关文章
去掉织梦cms底部的Powered by DedeCms
WordPress无双色球可靠的投注网站推荐在线投注插件外部链接自动添加nofollow标签在用dedecms建站时,打开首页,在网站的底部(如下图1)会看到一个Power by DedeCms超链接的版权信息,这是dedecms系统默认指向织梦cms官方网站的链接。这个链接是模板foote...
阅读更多
jquery图片无缝滚动代码T字形无缝滚动效果
WordPress无双色球可靠的投注网站推荐在线投注插件外部链接自动添加nofollow标签jquery图片无缝滚动代码T字形无缝滚动效果,jquery图片无缝滚动插件制作左右无缝滚动图片和上下无缝滚动图片,一款简单的jQuery无缝滚动代码。js图片向左滚动和向上滚动无缝对接效果演示。ht...
阅读更多
web前端HTML超级链接属性
WordPress无双色球可靠的投注网站推荐在线投注插件外部链接自动添加nofollow标签.标签<a> 双标签,行间元素.href属性是其最重要的属性,用来定义链接的目标地址,实现超级链接的功能.如果没有href属性,<a>标签仅仅是超链接的一个占位符。基础代码:&...
阅读更多