Pour ajouter l’attribut nofollow a un lien d’une catégorie spécifique, ajouter le code suivant dans votre fichier function.php de votre Thème WordPress en spécifiant son ID.
function nofollow_cat_posts($text) { global $post; if( in_category(1) ) { // Indiquez l'ID de la catégorie ici $text = stripslashes(wp_rel_nofollow($text)); } return $text; } add_filter('the_content', 'nofollow_cat_posts');