1. 直接安装启用 Nofollow for external link 插件。
2.在主题模板函数中添加下方代码:
把下面的代码直接添加到主题文件的模板函数(functions.php)中即可。
- add_filter('the_content', 'auto_nofollow'); //nofollow文章内容的站外链接
- add_filter('comment_text', 'auto_nofollow'); //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;
- }
代码中的第1、3行分别是针对文章内容、评论内容的,请根据自己的需要选择。比如不需要自动给文章内容的站外链接添加 nofollow 的话,就注销或删除第一行代码。
Ps:源码来自于WP大学。
评论