WordPress のカスタム投稿タイプでは RSS が配信されておりません。そのため、以下のコードを functions.php に書いて RSS を配信できるようにします。 function custom_post_rss_set($query) { if(is_feed()) { $query->set('post_type', Array( 'post', 'custom-type', 'custom-type2' ) ); return $query; } } add_filter('pre_get_posts', 'custom_post_rss_set'); このコードの変更点は Array() の中の custom-type のところですね。自分の WordPress に news と item というカスタム投稿タイプを作っている時の例は以下になります。