Exclude category from the main RSS feed and also keep that category feed
-
If you want to exclude a category from the main RSS feed and also keep that category rss feed use the following code:
function ac_exclude_from_rss($query) { // Categories to exclude - by ID $cats_to_exclude = array( 15, 16); if ($query->is_feed && !$query->is_category($cats_to_exclude) ) { set_query_var('category__not_in', $cats_to_exclude); } return $query; } add_filter('pre_get_posts','ac_exclude_from_rss');
If someone has something to add please share ??
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Exclude category from the main RSS feed and also keep that category feed’ is closed to new replies.