Skip to content

Instantly share code, notes, and snippets.

@trycycle
Created January 6, 2020 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trycycle/d5b26331cdc07c72dfd664fef32a3353 to your computer and use it in GitHub Desktop.
Save trycycle/d5b26331cdc07c72dfd664fef32a3353 to your computer and use it in GitHub Desktop.
WordPressで特定カテゴリをRSSフィードに表示させない設定
function RSSCategoryFilter($query) {
if ($query->is_feed) {
$query->set('cat', '-XXX'); // XXXは除外したいカテゴリID
}
return $query;
}
add_filter('pre_get_posts', 'RSSCategoryFilter');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment