wordpress 文章内外部链接添加 nofollow标签

主要是对the_content 的输出函数进行过滤,利用正则表达式(好强悍的正则表达式啊~~)来进行筛选替换,很厉害~~~收藏了…..
当然也得把他扔进 fuctions.php 中的…


<code>
//外部链接 添加nofollow
add_filter('the_content', 'content_nofollow');
add_filter('the_excerpt', 'content_nofollow');
function my_nofollow($content) {
return preg_replace_callback('/<a[^>]+/', 'content_nofollow_callback', $content);
}
//回调函数,判断并替换函数
function content_nofollow_callback($matches) {
$link = $matches[0];
$site_link = get_bloginfo('url');
if (strpos($link, 'rel') === false) {
$link = preg_replace("%(href=S(?!$site_link))%i", 'rel="nofollow" $1', $link);
} elseif (preg_match("%href=S(?!$site_link)%i", $link)) {
$link = preg_replace('/rel=S(?!nofollow)S*/i', 'rel="nofollow"', $link);
}
return $link;
}
</code>

0 thoughts on “wordpress 文章内外部链接添加 nofollow标签
添加一条新回复 回到顶部

亲爱的,主人已经关闭了这篇文章的评论 。