Viewing 3 replies - 1 through 3 (of 3 total)
  • Could this be a problem with only having Custom Post Types for my site (no comments or blog posts)?

    Could be, Pages are not RSS feeds – Posts are (the Blog)…a plugin may be the issue…

    Thread Starter christopherburton

    (@christopherburton)

    I deactivated all plugins to test but nothing changed.

    I solved it by adding this to my functions.php file:

    function myfeed_request($qv) {
        if (isset($qv['feed']) && !isset($qv['post_type']))
            $qv['post_type'] = array('post', 'lettering', 'type');
        return $qv;
    }
    add_filter('request', 'myfeed_request');

    Please provide a site link for verification.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘RSS Feed 404’ is closed to new replies.