我认为您可以在编码方面做得更简单。只需将以下内容添加到functions.php 主题文件夹中的文件。
function myFeedExcluder($query) {
if ($query->is_feed) {
$query->set(\'cat\',\'-73,-9\'); // categories 73 and 9 are being excluded
}
return $query;
}
add_filter(\'pre_get_posts\',\'myFeedExcluder\');
请特别注意,可以通过使用逗号分隔多个类别来排除它们。
这是the codex page on customizing feeds, 但它并没有专门针对这种情况。