<?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: Tweaking your FeedBurner / FeedSmith plugin to support Wordpress 2.5+ tag feeds (easy!)</title>
	<atom:link href="http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/</link>
	<description>Lifestyle Technology In Plain English</description>
	<lastBuildDate>Thu, 11 Mar 2010 18:55:02 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Addicted to feeds &#124; ../learninglab/joss</title>
		<link>http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/comment-page-1/#comment-2618</link>
		<dc:creator>Addicted to feeds &#124; ../learninglab/joss</dc:creator>
		<pubDate>Wed, 24 Feb 2010 12:33:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bradgrier.com/?p=266#comment-2618</guid>
		<description>[...] category feeds continue to work as they should is to modify the FeedBurnerFeedSmith plugin as noted here. Simply change the [...]</description>
		<content:encoded><![CDATA[<p>[…] category feeds continue to work as they should is to modify the FeedBurnerFeedSmith plugin as noted here. Simply change the […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Grier</title>
		<link>http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/comment-page-1/#comment-2118</link>
		<dc:creator>Brad Grier</dc:creator>
		<pubDate>Mon, 25 Jan 2010 03:48:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bradgrier.com/?p=266#comment-2118</guid>
		<description>Heh, nice work Missingtoof! And thanks for taking the time to share it, I&#039;m sure someone will appreciate it, as you said, this thread is being searched and found.

Cheers!

--Brad</description>
		<content:encoded><![CDATA[<p>Heh, nice work Missingtoof! And thanks for taking the time to share it, I’m sure someone will appreciate it, as you said, this thread is being searched and found.</p>
<p>Cheers!</p>
<p>–Brad</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Missingtoof</title>
		<link>http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/comment-page-1/#comment-2117</link>
		<dc:creator>Missingtoof</dc:creator>
		<pubDate>Mon, 25 Jan 2010 01:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bradgrier.com/?p=266#comment-2117</guid>
		<description>...damn, with your own title and URI, of course.</description>
		<content:encoded><![CDATA[<p>…damn, with your own title and URI, of course.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Missingtoof</title>
		<link>http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/comment-page-1/#comment-2116</link>
		<dc:creator>Missingtoof</dc:creator>
		<pubDate>Mon, 25 Jan 2010 01:25:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bradgrier.com/?p=266#comment-2116</guid>
		<description>The XHTML was parsed out above. This would go in the &lt;head&gt;

&lt;link rel=&quot;alternate&quot; type=&quot;application/atom+xml&quot; title=&quot;Missingtoof.com &#187; Full RSS Feed (All Posts)&quot; href=&quot;http://feeds.missingtoof.com/missingtoof&quot; /&gt;</description>
		<content:encoded><![CDATA[<p>The XHTML was parsed out above. This would go in the &lt;head&gt;</p>
<p>&lt;link rel=“alternate” type=“application/atom+xml” title=“Missingtoof.com » Full RSS Feed (All Posts)” href=“http://feeds.missingtoof.com/missingtoof” /&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Missingtoof</title>
		<link>http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/comment-page-1/#comment-2115</link>
		<dc:creator>Missingtoof</dc:creator>
		<pubDate>Mon, 25 Jan 2010 01:24:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bradgrier.com/?p=266#comment-2115</guid>
		<description>Thanks for the tip. I went a step farther stripping out all the Feed URIs that Wordpress inserts into the head of the document (for the RSS button in/by the address bar). These filters grab onto things in link-template.php (in wordpress 2.9.*) and your theme&#039;s functions.php file.
 
function remove_rss() {
    return;
}
add_filter(&#039;post_comments_feed_link&#039;,&#039;remove_rss&#039;);
add_filter(&#039;category_feed_link&#039;,&#039;remove_rss&#039;);
add_filter(&#039;author_feed_link&#039;,&#039;remove_rss&#039;);
add_filter(&#039;search_feed_link&#039;,&#039;remove_rss&#039;);

Then we can go in to header.php and add just the URIs of the newly created Feedburner feeds to the  manually. Such as this: 



Hope that helps somebody (you&#039;ve got the top result on my Google search query, so it&#039;s likely other people are coming here too)</description>
		<content:encoded><![CDATA[<p>Thanks for the tip. I went a step farther stripping out all the Feed URIs that Wordpress inserts into the head of the document (for the RSS button in/by the address bar). These filters grab onto things in link-template.php (in wordpress 2.9.*) and your theme’s functions.php file.</p>
<p>function remove_rss() {<br />
    return;<br />
}<br />
add_filter(‘post_comments_feed_link’,‘remove_rss’);<br />
add_filter(‘category_feed_link’,‘remove_rss’);<br />
add_filter(‘author_feed_link’,‘remove_rss’);<br />
add_filter(‘search_feed_link’,‘remove_rss’);</p>
<p>Then we can go in to header.php and add just the URIs of the newly created Feedburner feeds to the  manually. Such as this: </p>
<p>Hope that helps somebody (you’ve got the top result on my Google search query, so it’s likely other people are coming here too)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How I set up a feed based on Wordpress tags using Feedburner : Heather on her travels</title>
		<link>http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/comment-page-1/#comment-1026</link>
		<dc:creator>How I set up a feed based on Wordpress tags using Feedburner : Heather on her travels</dc:creator>
		<pubDate>Tue, 31 Mar 2009 21:37:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bradgrier.com/?p=266#comment-1026</guid>
		<description>[...] FeedSmith Feedburner Plug-in and then you can set up a feed for just the tags you want. Thanks to Bradgrier.com where I found this useful post which gave me the instructions I needed which I&#8217;ll repeat [...]</description>
		<content:encoded><![CDATA[<p>[…] FeedSmith Feedburner Plug-in and then you can set up a feed for just the tags you want. Thanks to Bradgrier.com where I found this useful post which gave me the instructions I needed which I’ll repeat […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: realsurf (mrRealSurf)</title>
		<link>http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/comment-page-1/#comment-582</link>
		<dc:creator>realsurf (mrRealSurf)</dc:creator>
		<pubDate>Tue, 10 Feb 2009 02:05:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bradgrier.com/?p=266#comment-582</guid>
		<description>&lt;strong&gt;FriendFeed Comment&lt;/strong&gt;
&lt;a href=&quot;http://friendfeed.com/realsurf&quot; title=&quot;FriendFeed Comment&quot; rel=&quot;nofollow&quot;&gt;
&lt;div title=&quot;realsurf (mrRealSurf)&quot; style=&quot;float:left;margin-right:10px;padding:0;width:60px;height:60px;background:url(http://s3.amazonaws.com/static.whitleymedia/picbg.jpg) no-repeat top;cursor:hand;&quot;&gt;
&lt;/div&gt;
&lt;div title=&quot;realsurf (mrRealSurf)&quot; style=&quot;float:left;margin-left:-70px;margin-right:10px;padding:0;width:60px;height:60px;background:url(http://friendfeed.com/realsurf/picture?size=medium) no-repeat top;cursor:hand;&quot;&gt;
&lt;/div&gt;
&lt;/a&gt;
Tw... [link to post]&lt;br /&gt;&lt;br /&gt; - Posted using Chat Catcher </description>
		<content:encoded><![CDATA[<p><strong>FriendFeed Comment</strong><br />
<a href="http://friendfeed.com/realsurf" title="FriendFeed Comment" rel="nofollow"></p>
<div title="realsurf (mrRealSurf)" style="float:left;margin-right:10px;padding:0;width:60px;height:60px;background:url(http://s3.amazonaws.com/static.whitleymedia/picbg.jpg) no-repeat top;cursor:hand;">
</div>
<div title="realsurf (mrRealSurf)" style="float:left;margin-left:-70px;margin-right:10px;padding:0;width:60px;height:60px;background:url(http://friendfeed.com/realsurf/picture?size=medium) no-repeat top;cursor:hand;">
</div>
<p></a><br />
Tw… [link to post]</p>
<p> — Posted using Chat Catcher</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Grier</title>
		<link>http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/comment-page-1/#comment-511</link>
		<dc:creator>Brad Grier</dc:creator>
		<pubDate>Fri, 12 Dec 2008 05:01:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bradgrier.com/?p=266#comment-511</guid>
		<description>@Chad, good call, thanks for posting that extension!</description>
		<content:encoded><![CDATA[<p>@Chad, good call, thanks for posting that extension!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad A. Johnson</title>
		<link>http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/comment-page-1/#comment-509</link>
		<dc:creator>Chad A. Johnson</dc:creator>
		<pubDate>Thu, 11 Dec 2008 22:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bradgrier.com/?p=266#comment-509</guid>
		<description>Great post. This was exactly what I needed. 

I extended the code to include author feeds like this:

is_feed() &amp;&amp; $feed != &#039;comments-rss2&#039; &amp;&amp; !is_single() &amp;&amp; !is_tag() &amp;&amp; !is_author() &amp;&amp;</description>
		<content:encoded><![CDATA[<p>Great post. This was exactly what I needed. </p>
<p>I extended the code to include author feeds like this:</p>
<p>is_feed() &amp;&amp; $feed != ‘comments-rss2’ &amp;&amp; !is_single() &amp;&amp; !is_tag() &amp;&amp; !is_author() &amp;&amp;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Grier</title>
		<link>http://blog.bradgrier.com/2008/06/23/tweaking-your-feedburner-feedsmith-plugin-to-support-wordpress-25-tag-feeds-easy/comment-page-1/#comment-397</link>
		<dc:creator>Brad Grier</dc:creator>
		<pubDate>Thu, 23 Oct 2008 15:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bradgrier.com/?p=266#comment-397</guid>
		<description>&lt;a href=&#039;#comment-1153&#039;&gt;@Anthony&lt;/a&gt; - My pleasure Anthony. Always happy to help :)</description>
		<content:encoded><![CDATA[<p><a href='#comment-1153'>@Anthony</a> — My pleasure Anthony. Always happy to help <img src='http://blog.bradgrier.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
