July 27, 2009
Often you'll want to exclude a particular category from your blog's RSS feed - whether it's an archive of your Twitter posts, or a category you're using for some kind of housekeeping. It's easy to do - just edit the category number in this code, and add it to your theme's functions.php file. function feed_the_cat($query) { if ($query->is_feed) { $query->set('cat','-1'); //change... Read more