Copia el siguiente código y pégalo en el archivo functions.php de tu tema. Una vez que guardes el archivo de archivo, el atributo rel = "nofollow" será eliminado.
function remove_nofollow($string) { $string = str_ireplace(' rel="nofollow"', '', $string); return $string; } add_filter('the_content', 'remove_nofollow');
Vía: WpRecipes

Apuntes
Cómo eliminar automáticamente el nofollow de sus post http://bit.ly/9wgL6f
This comment was originally posted on Twitter
| 8 Febrero 2010 @ 4:03 pm