HandySolo: I'm trying to use the Zeo technique mentioned above, but my theme did not come with a functions.php file.
I created one:
function myFilter($query) {
if ($query->is_feed) {
$query->set('cat','-4');
}
return $query;
}
add_filter('pre_get_posts','myFilter');
Unfortunately, it is having the effect of breaking the WP post editor! When I try to save a post, a page of errors results as follows:
Warning: Cannot modify header information - headers already sent by (output started at /home/.goomba/calyxdesign/calyxdesign.com/wp-content/themes/modern/functions.php:15) in /home/.goomba/calyxdesign/calyxdesign.com/wp-includes/pluggable.php on line 390
I don't even know if it's working on the RSS feed, because I can't create a post to test it.
Any idea as to what's happening here?