为WordPress 文章中的链接自动添加 nofollow标签

December 09, 2023
测试
测试
测试
测试
2 分钟阅读

nofollow 标签是神马东东在这里不多说,请自行谷歌。默认的话,WordPress是不会为你的文章的链接添加rel="nofollow"的。如果你需要这么做的话,不必一个个手动添加,直接在主题的funtions .php文件那里加入以下代码就可以自动实现了。

add_filter('the_content', 'auto_nofollow');   function auto_nofollow($content) { //return stripslashes(wp_rel_nofollow($content));   return preg_replace_callback('/<a>]+/', 'auto_nofollow_callback', $content); }   function auto_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; }

本文由 DeveWork.com 的 Jeff 翻译自《WordPress hack: Automatic “Nofollow” for external links in post content》,转载请注明来源。

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多