How to exclude wordpress category from feed function exclude_category($query) { if ( $query->is_feed ) { $query->set('cat', '5'); } return $query; } add_filter('pre_get_posts', 'exclude_category'); You can change with $query>is_home or $query->is_frontpage to exclude the category from frontpage see Conditional Tags at wordpress codexIncoming search terms for the article:wordpress codex exclude categorywordpress query exclude categoryexclude categoryexclude wordpress [...]

Category: Script Snippet
Tags: