Recipe: Exclude category from RSS Feed
-
Hello,
i’d tried following frequently posted recipe to exclude a category from my rss feed:
function myFilter($query) { if ($query->is_feed) { $query->set('cat','-5'); } return $query; } add_filter('pre_get_posts','myFilter');
Unforunately this recipe doesn’t work (anymore?).
I’m not sure, but I guess, the query->set statement doesn’t have any effect.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Recipe: Exclude category from RSS Feed’ is closed to new replies.