Exclude Category from RSS (themes/name/functions.php)
function fb_cat_exclude($query) {
if ($query->is_feed) {
$query->set('cat','-49'); //here insert the ID of the Category. More than one: -49, -5,-12
}
return $query;
}
add_filter('pre_get_posts','fb_cat_exclude');
Added to WordPress by David Hellmann