Re-enabling RSS tag feeds with the Feedburner Plugin

Most of us WordPress users who are using Feedburner to track our feed subscriptions are using the Feedburner Feedsmith WordPress plugin to make it all work. Unfortuantely that plugin remove the ability for folks to subscribe to RSS tag feeds directly from your blog. In this article, the author explain how to re-enable this feature.
In the function

function ol_feed_redirect()

change this

is_feed() && $feed != 'comments-rss2' && !is_single() &&

to this:

is_feed() && $feed != 'comments-rss2' && !is_single() && !is_tag() &&

Basically you are just telling the plugin that if the URL has a tag argument, it should let WordPress handle the feed rather than Feedburner.
(via the ocamlcore.org team)

Leave a Reply

Your email address will not be published. Required fields are marked *