Force use of RSS 0.92 feed

Just wondering if there was an elegant way to force WordPress to use the RSS 0.92 feed at all?

The reason I ask is that we have added some custom XML tags to a site’s feed so that an accompanying iOS app can pull certain data from the feed – WordPress has recently deprecated RSS 0.92 in favour of RSS 2.0 and this is breaking the app, so reverting to RSS 0.92 as a short term fix would be ideal.

Read More

I will very much look forward to any thoughts you might have!

Alex

Related posts

Leave a Reply

1 comment

  1. Do you mean RDF/RSS 1.0 feed?

    It is not deprecated and should be available just fine at /feed/rdf

    To force RSS 2.0 links to use RSS 0.92 template try this:

    remove_action( 'do_feed_rss2', 'do_feed_rss2' );
    add_action( 'do_feed_rss2', 'do_feed_rss' );