Hello everyone,
The following code will exclude 1 category from the RSS feed.
I want to modify this code to exclude 8 custom post types that i am using.. How can i do this?Code:function myFeedExcluder($query) { if ($query->is_feed) { $query->set('cat','-12'); } return $query; } add_filter('pre_get_posts','myFeedExcluder');
Will this make my site slower?
many thanks,
Andy



Reply With Quote
Bookmarks