WordPress纯代码实现外链新窗口打开
用跳转的方式实现文章内外链真的太麻烦,用WordPress纯代码实现外链新窗口打开的同时还给外链添加了nofo…
用跳转的方式实现文章内外链真的太麻烦,用WordPress纯代码实现外链新窗口打开的同时还给外链添加了nofollow属性,增加了网站的权重。
代码如下没(放在主题function.php内):
add_filter( ‘the_content’, ‘cn_nf_url_parse’); function cn_nf_url_parse( $content ) { $regexp = “]*href=(“??)([^” >]*?)1[^>]*>”;
if(preg_match_all(“/$regexp/siU”, $content, $matches, PREG_SET_ORDER)) {
if( !empty($matches) ) {
$srcUrl = get_option(‘siteurl’);
for ($i=0; $i ‘);
$tag .= $noFollow.’>’;
$content = str_replace($tag2,$tag,$content);
}
}
}
}
$content = str_replace(‘]]>’, ‘]]>’, $content);
return $content; }
演示效果:京东
类别:WordPress技巧、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!