Is it possible to use the WP Feedburner plugin for a post feed and a comments feed at the same time?
reference this plugin:
http://orderedlist.com/articles/wordpress-feedburner-plugin/
Thanks.
Is it possible to use the WP Feedburner plugin for a post feed and a comments feed at the same time?
reference this plugin:
http://orderedlist.com/articles/wordpress-feedburner-plugin/
Thanks.
Do it manually. Add something like this to your .htaccess ABOVE the WordPress stuff:
RewriteRule ^feed/?$ http://feeds.feedburner.com/viper007bondcom-rss2 [QSA,L]
RewriteRule ^feed/rss2/?$ http://feeds.feedburner.com/viper007bondcom-rss2 [QSA,L]
RewriteRule ^feed/rss/?$ http://feeds.feedburner.com/viper007bondcom-rss [QSA,L]
RewriteRule ^feed/atom/?$ http://feeds.feedburner.com/viper007bondcom-atom [QSA,L]
RewriteRule ^feed/rdf/?$ http://feeds.feedburner.com/viper007bondcom-rdf [QSA,L]
RewriteRule ^rss2/?$ http://feeds.feedburner.com/viper007bondcom-rss2 [QSA,L]
RewriteRule ^rss/?$ http://feeds.feedburner.com/viper007bondcom-rss [QSA,L]
RewriteRule ^atom/?$ http://feeds.feedburner.com/viper007bondcom-atom [QSA,L]
RewriteRule ^rdf/?$ http://feeds.feedburner.com/viper007bondcom-rdf [QSA,L]
Obviously you need to use different Feedburner URLs. ;)
Then point Feedburner to the PHP scripts themselves:
http://www.meeciteewurkor.com/wp/wp-rss2.php
http://www.meeciteewurkor.com/wp/wp-rss.php
http://www.meeciteewurkor.com/wp/wp-atom.php
http://www.meeciteewurkor.com/wp/wp-rdf.php
So, I'd have to create 4 separate Feedburner URL's?
(Thanks, btw, I think this is something I can do.)
Oh wait a minute.. I used a plugin for my main feed. Now I need to redirect this:
http://www.meeciteewurkor.com/wp/wp-commentsrss2.php
to my new Feedburner comments URL.
You only need a Feedburner URL for each format you wish to mirror. I want all 4 formats hosted by Feedburner (RSS2, RSS, Atom, and RDF) but if you only care about RSS2, that's fine.
Anyway...
RewriteRule ^comments/feed/?$ http://feeds.feedburner.com/yourfeedname [QSA,L]
This topic has been closed to new replies.