<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Feedburner WP Plugin Category Fix</title>
	<atom:link href="http://interfacelab.com/feedburner-wp-plugin-fix/feed/" rel="self" type="application/rss+xml" />
	<link>http://interfacelab.com/feedburner-wp-plugin-fix/</link>
	<description></description>
	<lastBuildDate>Fri, 23 Jul 2010 00:06:59 -0700</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: RevTrev</title>
		<link>http://interfacelab.com/feedburner-wp-plugin-fix/comment-page-1/#comment-553</link>
		<dc:creator>RevTrev</dc:creator>
		<pubDate>Tue, 13 Jul 2010 16:17:48 +0000</pubDate>
		<guid isPermaLink="false">http://interfacelab.com/?p=23#comment-553</guid>
		<description>Thanks I was wondering if this was the issue. For some reason, my feed for my podcast worked a couple times, then stopped. Feedburner says it&#039;s OK, but I can&#039;t ping it. That&#039;s the only issue I found. I&#039;m hoping this will fix it all.</description>
		<content:encoded><![CDATA[<p>Thanks I was wondering if this was the issue. For some reason, my feed for my podcast worked a couple times, then stopped. Feedburner says it&#39;s OK, but I can&#39;t ping it. That&#39;s the only issue I found. I&#39;m hoping this will fix it all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roKKo</title>
		<link>http://interfacelab.com/feedburner-wp-plugin-fix/comment-page-1/#comment-227</link>
		<dc:creator>roKKo</dc:creator>
		<pubDate>Tue, 27 Apr 2010 13:18:05 +0000</pubDate>
		<guid isPermaLink="false">http://interfacelab.com/?p=23#comment-227</guid>
		<description>If you like to use this great plugin with your category slugs too, than you have to enhance the plugin again. replace the function ol_feed_redirect() in FeedBurner_FeedSmith_Plugin.php in Line 137, with the following lines: &lt;br&gt;&lt;br&gt;&lt;br&gt;function ol_feed_redirect() {&lt;br&gt;	global $wp, $feedburner_settings, $feed, $withcomments;&lt;br&gt;     &lt;br&gt;    $category_name = $wp-&gt;query_vars[&#039;category_name&#039;];&lt;br&gt;    $category_name = split(&quot;/&quot;, $category_name);&lt;br&gt;    $category_name = $category_name[count($category_name) - 1];&lt;br&gt;     &lt;br&gt;    &lt;br&gt;	if (is_feed() &amp;&amp; $feed != &#039;comments-rss2&#039; &amp;&amp; !is_single() &amp;&amp; $category_name == &#039;&#039; &amp;&amp; ($withcomments != 1) &amp;&amp; trim($feedburner_settings[&#039;feedburner_url&#039;]) != &#039;&#039;) {&lt;br&gt;		if (function_exists(&#039;status_header&#039;)) status_header( 302 );&lt;br&gt;		header(&quot;Location:&quot; . trim($feedburner_settings[&#039;feedburner_url&#039;]));&lt;br&gt;		header(&quot;HTTP/1.1 302 Temporary Redirect&quot;);&lt;br&gt;		exit();&lt;br&gt;	} &lt;br&gt;	else if (is_feed() &amp;&amp; $feed != &#039;comments-rss2&#039; &amp;&amp; !is_single() &amp;&amp; $category_name != &#039;&#039; &amp;&amp; ($withcomments != 1) &amp;&amp; trim($feedburner_settings[&#039;feedburner_category_&#039;.$category_name]) != &#039;&#039;) {&lt;br&gt;		if (function_exists(&#039;status_header&#039;)) status_header( 302 );&lt;br&gt;		header(&quot;Location:&quot; . trim($feedburner_settings[&#039;feedburner_category_&#039;.$category_name]));&lt;br&gt;		header(&quot;HTTP/1.1 302 Temporary Redirect&quot;);&lt;br&gt;		exit();&lt;br&gt;	}&lt;br&gt;	elseif (is_feed() &amp;&amp; ($feed == &#039;comments-rss2&#039; &#124;&#124; $withcomments == 1) &amp;&amp; trim($feedburner_settings[&#039;feedburner_comments_url&#039;]) != &#039;&#039;) {&lt;br&gt;		if (function_exists(&#039;status_header&#039;)) status_header( 302 );&lt;br&gt;		header(&quot;Location:&quot; . trim($feedburner_settings[&#039;feedburner_comments_url&#039;]));&lt;br&gt;		header(&quot;HTTP/1.1 302 Temporary Redirect&quot;);&lt;br&gt;		exit();&lt;br&gt;	}&lt;br&gt;}</description>
		<content:encoded><![CDATA[<p>If you like to use this great plugin with your category slugs too, than you have to enhance the plugin again. replace the function ol_feed_redirect() in FeedBurner_FeedSmith_Plugin.php in Line 137, with the following lines: </p>
<p>function ol_feed_redirect() {<br />	global $wp, $feedburner_settings, $feed, $withcomments;</p>
<p>    $category_name = $wp-&gt;query_vars[&#39;category_name&#39;];<br />    $category_name = split(&#8220;/&#8221;, $category_name);<br />    $category_name = $category_name[count($category_name) - 1];</p>
<p>	if (is_feed() &#038;&#038; $feed != &#39;comments-rss2&#39; &#038;&#038; !is_single() &#038;&#038; $category_name == &#39;&#39; &#038;&#038; ($withcomments != 1) &#038;&#038; trim($feedburner_settings[&#39;feedburner_url&#39;]) != &#39;&#39;) {<br />		if (function_exists(&#39;status_header&#39;)) status_header( 302 );<br />		header(&#8220;Location:&#8221; . trim($feedburner_settings[&#39;feedburner_url&#39;]));<br />		header(&#8220;HTTP/1.1 302 Temporary Redirect&#8221;);<br />		exit();<br />	} <br />	else if (is_feed() &#038;&#038; $feed != &#39;comments-rss2&#39; &#038;&#038; !is_single() &#038;&#038; $category_name != &#39;&#39; &#038;&#038; ($withcomments != 1) &#038;&#038; trim($feedburner_settings[&#39;feedburner_category_&#39;.$category_name]) != &#39;&#39;) {<br />		if (function_exists(&#39;status_header&#39;)) status_header( 302 );<br />		header(&#8220;Location:&#8221; . trim($feedburner_settings[&#39;feedburner_category_&#39;.$category_name]));<br />		header(&#8220;HTTP/1.1 302 Temporary Redirect&#8221;);<br />		exit();<br />	}<br />	elseif (is_feed() &#038;&#038; ($feed == &#39;comments-rss2&#39; || $withcomments == 1) &#038;&#038; trim($feedburner_settings[&#39;feedburner_comments_url&#39;]) != &#39;&#39;) {<br />		if (function_exists(&#39;status_header&#39;)) status_header( 302 );<br />		header(&#8220;Location:&#8221; . trim($feedburner_settings[&#39;feedburner_comments_url&#39;]));<br />		header(&#8220;HTTP/1.1 302 Temporary Redirect&#8221;);<br />		exit();<br />	}<br />}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Dorkin @ BiggerPockets</title>
		<link>http://interfacelab.com/feedburner-wp-plugin-fix/comment-page-1/#comment-180</link>
		<dc:creator>Joshua Dorkin @ BiggerPockets</dc:creator>
		<pubDate>Tue, 24 Nov 2009 22:55:50 +0000</pubDate>
		<guid isPermaLink="false">http://interfacelab.com/?p=23#comment-180</guid>
		<description>This looks like a great plugin.  How might I hack it to work for author post feeds? &lt;br&gt;&lt;br&gt;On a multi-author blog, all author feeds redirect to the same base-feedburner feed; I need to be able to have each author have their own feed.&lt;br&gt;&lt;br&gt;Thanks in advance for the help!</description>
		<content:encoded><![CDATA[<p>This looks like a great plugin.  How might I hack it to work for author post feeds? </p>
<p>On a multi-author blog, all author feeds redirect to the same base-feedburner feed; I need to be able to have each author have their own feed.</p>
<p>Thanks in advance for the help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Tips &#124; Ravi</title>
		<link>http://interfacelab.com/feedburner-wp-plugin-fix/comment-page-1/#comment-51</link>
		<dc:creator>WordPress Tips &#124; Ravi</dc:creator>
		<pubDate>Thu, 30 Jul 2009 07:11:16 +0000</pubDate>
		<guid isPermaLink="false">http://interfacelab.com/?p=23#comment-51</guid>
		<description>[...] Bulk delete spam comments * Category feeds plugin for Feedburner * To speed up WordPress, add the following to your [...]</description>
		<content:encoded><![CDATA[<p>[...] Bulk delete spam comments * Category feeds plugin for Feedburner * To speed up WordPress, add the following to your [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Tips</title>
		<link>http://interfacelab.com/feedburner-wp-plugin-fix/comment-page-1/#comment-36</link>
		<dc:creator>WordPress Tips</dc:creator>
		<pubDate>Tue, 28 Apr 2009 02:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://interfacelab.com/?p=23#comment-36</guid>
		<description>[...] Bulk delete spam comments * Category feeds plugin for Feedburner * To speed up WordPress, add the following to your [...]</description>
		<content:encoded><![CDATA[<p>[...] Bulk delete spam comments * Category feeds plugin for Feedburner * To speed up WordPress, add the following to your [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andlil</title>
		<link>http://interfacelab.com/feedburner-wp-plugin-fix/comment-page-1/#comment-181</link>
		<dc:creator>Andlil</dc:creator>
		<pubDate>Mon, 20 Apr 2009 20:37:19 +0000</pubDate>
		<guid isPermaLink="false">http://interfacelab.com/?p=23#comment-181</guid>
		<description>Work perfect Thanks very good plugin</description>
		<content:encoded><![CDATA[<p>Work perfect Thanks very good plugin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Narada</title>
		<link>http://interfacelab.com/feedburner-wp-plugin-fix/comment-page-1/#comment-182</link>
		<dc:creator>Narada</dc:creator>
		<pubDate>Sun, 29 Mar 2009 11:10:29 +0000</pubDate>
		<guid isPermaLink="false">http://interfacelab.com/?p=23#comment-182</guid>
		<description>Hi,&lt;br&gt;&lt;br&gt;This is great but I&#039;d like to use /tag/foo/feed.  Is this possible?  Tagging is preferable to categorisation in my opinion.  The latter is primitive and superceded.  An interface where one can add a tag to feedburner feed mapping (instead of having a listing of all tags because there would be too many) would be very useful.&lt;br&gt;&lt;br&gt;Would really appreciate it.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This is great but I&#39;d like to use /tag/foo/feed.  Is this possible?  Tagging is preferable to categorisation in my opinion.  The latter is primitive and superceded.  An interface where one can add a tag to feedburner feed mapping (instead of having a listing of all tags because there would be too many) would be very useful.</p>
<p>Would really appreciate it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fred</title>
		<link>http://interfacelab.com/feedburner-wp-plugin-fix/comment-page-1/#comment-183</link>
		<dc:creator>Fred</dc:creator>
		<pubDate>Tue, 24 Mar 2009 18:05:53 +0000</pubDate>
		<guid isPermaLink="false">http://interfacelab.com/?p=23#comment-183</guid>
		<description>This is great -- been looking for this solution for a LONG time to separate the feed for a podcast from the main blog.  Thank you!</description>
		<content:encoded><![CDATA[<p>This is great &#8212; been looking for this solution for a LONG time to separate the feed for a podcast from the main blog.  Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evan Courtney</title>
		<link>http://interfacelab.com/feedburner-wp-plugin-fix/comment-page-1/#comment-184</link>
		<dc:creator>Evan Courtney</dc:creator>
		<pubDate>Wed, 11 Feb 2009 13:26:16 +0000</pubDate>
		<guid isPermaLink="false">http://interfacelab.com/?p=23#comment-184</guid>
		<description>Not working for me.&lt;br&gt;It&#039;s not redirecting, but it shows the category feed in the url, but the feed is all of the articles.&lt;br&gt;&lt;br&gt;Here is what my settings look like.&lt;br&gt;&lt;br&gt;FeedBurner settings:&lt;br&gt;- original feed: &lt;a href=&quot;http://www.evancourtney.com/?cat=212&quot; rel=&quot;nofollow&quot;&gt;http://www.evancourtney.com/?cat=212&lt;/a&gt;&lt;br&gt;- feed address: &lt;a href=&quot;http://feeds2.feedburner.com/&quot; rel=&quot;nofollow&quot;&gt;http://feeds2.feedburner.com/&lt;/a&gt; evancourtney/the1814&lt;br&gt;&lt;br&gt;new WP plugin settings:&lt;br&gt;- first, normal feed : &lt;a href=&quot;http://feeds2.feedburner.com/evancourtney&quot; rel=&quot;nofollow&quot;&gt;http://feeds2.feedburner.com/evancourtney&lt;/a&gt;&lt;br&gt;- second, new category feed: &lt;a href=&quot;http://feeds2.feedburner.com/evancourtney/the1814&quot; rel=&quot;nofollow&quot;&gt;http://feeds2.feedburner.com/evancourtney/the1814&lt;/a&gt;&lt;br&gt;&lt;br&gt;Any ideas?</description>
		<content:encoded><![CDATA[<p>Not working for me.<br />It&#39;s not redirecting, but it shows the category feed in the url, but the feed is all of the articles.</p>
<p>Here is what my settings look like.</p>
<p>FeedBurner settings:<br />- original feed: <a href="http://www.evancourtney.com/?cat=212" rel="nofollow">http://www.evancourtney.com/?cat=212</a><br />- feed address: <a href="http://feeds2.feedburner.com/" rel="nofollow">http://feeds2.feedburner.com/</a> evancourtney/the1814</p>
<p>new WP plugin settings:<br />- first, normal feed : <a href="http://feeds2.feedburner.com/evancourtney" rel="nofollow">http://feeds2.feedburner.com/evancourtney</a><br />- second, new category feed: <a href="http://feeds2.feedburner.com/evancourtney/the1814" rel="nofollow">http://feeds2.feedburner.com/evancourtney/the1814</a></p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Feedburner Feedsmith Plug-in Category Fix &#124; Hobby Stash</title>
		<link>http://interfacelab.com/feedburner-wp-plugin-fix/comment-page-1/#comment-28</link>
		<dc:creator>Feedburner Feedsmith Plug-in Category Fix &#124; Hobby Stash</dc:creator>
		<pubDate>Sun, 25 Jan 2009 12:45:42 +0000</pubDate>
		<guid isPermaLink="false">http://interfacelab.com/?p=23#comment-28</guid>
		<description>[...] Feedburner WP plugin Category Fix enhances the original plugin to automatically redirect category feeds to the appropriate Feedburner feed. If you are using WordPress as a CMS and have a lot of sub categories, it&#8217;s a bit cumbersome to set up initially.  Also, the plug-in has not been renamed (should be) to differentiate between the fix and the original plugin. I would recommend deactivating the original version and uninstalling it before installing this one to eliminate confusion. Needless to say, you need to use category permalinks for this to work. [...]</description>
		<content:encoded><![CDATA[<p>[...] Feedburner WP plugin Category Fix enhances the original plugin to automatically redirect category feeds to the appropriate Feedburner feed. If you are using WordPress as a CMS and have a lot of sub categories, it&#8217;s a bit cumbersome to set up initially.  Also, the plug-in has not been renamed (should be) to differentiate between the fix and the original plugin. I would recommend deactivating the original version and uninstalling it before installing this one to eliminate confusion. Needless to say, you need to use category permalinks for this to work. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
