Вы можете добавить этот код в файл functions.php
function myfeed_request($qv)
{
if (isset($qv['feed']) && !isset($qv['post_type']))
{
$qv['post_type'] = get_post_types($args = array(
'public' => true,
'_builtin' => false
));
array_push($qv['post_type'],'post');
return $qv;
}
}
add_filter('request', 'myfeed_request');
Проверьте эту страницу здесь для более подробной информации