<?php
public function custom_post_rss_set( $query ) {
if ( is_feed() ) {
$post_type = $query->get( 'post_type' );
if ( empty( $post_type ) ) {
$query->set( 'post_type', array( 'カスタムタイプ名', 'カスタムタイプ名', 'カスタムタイプ名' ) );
}
return $query;
}
}
add_filter( 'pre_get_posts', 'custom_post_rss_set' );
?>
※上記のコードで上手くいかない場合もあるようです。
RSS Includes Pagesこちらからプラグインをダウンロードして有効化するだけでOKです。