View Single Post
Old 03-21-2010, 09:53 PM  
amvcdotcom
i like kitties.
 
amvcdotcom's Avatar
 
Industry Role:
Join Date: Jan 2004
Location: Seattle & NC
Posts: 886
Quote:
Originally Posted by fris View Post
So I was bored.

Code:
<?php
/*
Plugin Name: External Nofollow Links
Plugin URI: http://www.gfy.com
Description: Filter all external links to use nofollow
Version: 1.0
Author: fris
Author URI: http://www.gfy.com
*/

function change_links($text) {
    $host = str_replace('.','\.',getenv("HTTP_HOST"));
    return preg_replace('/href=["|\']?(http:\/\/(?!'.$host.')([^"\']*))["|\']?/ui','href="$1" rel="nofollow"',$text);
}

add_filter('the_content','change_links');

?>

fris....you're awesome....thanks! i'll give this a shot tomorrow and will report back how it fared.
__________________
Email only: allen at/ amvc dotcom
amvcdotcom is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote