加nofollow的人,贱贱的,有木有
把以下加入到主题的functions.php文件内
[codee]
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; }
[/codee]
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容