<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Tag: rss</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Tue, 21 May 2013 07:27:20 +0000</pubDate>

<item>
<title>helgatheviking on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23339</link>
<pubDate>Tue, 04 Oct 2011 16:10:22 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23339@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;yes!  sorry i didn't see it sooner.  don't forget to mark as resolved.
&#60;/p&#62;</description>
</item>
<item>
<title>cookieandkate on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23337</link>
<pubDate>Tue, 04 Oct 2011 04:25:38 +0000</pubDate>
<dc:creator>cookieandkate</dc:creator>
<guid isPermaLink="false">23337@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;It works!!! That's the code I needed all along. Thank you very, very much!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23336</link>
<pubDate>Tue, 04 Oct 2011 03:57:59 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23336@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;what about?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// turn off wordpress RSS links, activate Thematic RSS
define(&#38;#39;THEMATIC_COMPATIBLE_FEEDLINKS&#38;#39;, true);

function feedburner_rss(){
   return &#38;#39;&#38;lt;link rel=&#38;quot;alternate&#38;quot; type=&#38;quot;application/rss+xml&#38;quot; href=&#38;quot;http://feeds.feedburner.com/CookieAndKate&#38;quot; title=&#38;quot;Cookie and Kate Posts RSS feed&#38;quot; /&#38;gt;&#38;#39;;
}
add_filter(&#38;#39;thematic_rss&#38;#39;,&#38;#39;feedburner_rss&#38;#39;);

function feedburner_comments_rss(){
   return &#38;#39;&#38;lt;link rel=&#38;quot;alternate&#38;quot; type=&#38;quot;application/rss+xml&#38;quot; href=&#38;quot;http://feeds.feedburner.com/CommentsForCookieAndKate&#38;quot; title=&#38;quot;Cookie and Kate Comments RSS feed&#38;quot; /&#38;gt;&#38;#39;;
}
add_filter(&#38;#39;thematic_commentsrss&#38;#39;,&#38;#39;feedburner_comments_rss&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;looking again at header-extensions.php it looks like the filter to change the RSS is different from the filter to turn it off.
&#60;/p&#62;</description>
</item>
<item>
<title>cookieandkate on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23335</link>
<pubDate>Tue, 04 Oct 2011 02:53:16 +0000</pubDate>
<dc:creator>cookieandkate</dc:creator>
<guid isPermaLink="false">23335@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;It's almost working now, Helga! Here's what I added within my functions.php:&#60;/p&#62;
&#60;p&#62;// turn off wordpress RSS links, activate Thematic RSS&#60;br /&#62;
define('THEMATIC_COMPATIBLE_FEEDLINKS', true);&#60;br /&#62;
function no_rss(){&#60;br /&#62;
  return FALSE;&#60;br /&#62;
}&#60;br /&#62;
add_filter('thematic_show_rss','no_rss');&#60;br /&#62;
add_filter('thematic_show_commentsrss','no_rss');&#60;/p&#62;
&#60;p&#62;Since I had effectively stripped the RSS feeds from my home page, I added them back manually into functions.php along with some other header functions:&#60;br /&#62;
&#38;lt;link rel=&#34;alternate&#34; type=&#34;application/rss+xml&#34; href=&#34;http://feeds.feedburner.com/CookieAndKate&#34; title=&#34;Cookie and Kate Posts RSS feed&#34; /&#38;gt;&#60;br /&#62;
&#38;lt;link rel=&#34;alternate&#34; type=&#34;application/rss+xml&#34; href=&#34;http://feeds.feedburner.com/CommentsForCookieAndKate&#34; title=&#34;Cookie and Kate Comments RSS feed&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;Here's the weird part--it works perfectly for my home page and archive pages. However, if I go to a page with my own content, or a post itself, the feed is all wrong. For example, the feed shown on my about (/about/) page is: &#60;a href=&#34;http://cookieandkate.com/about/feed/&#34; rel=&#34;nofollow&#34;&#62;http://cookieandkate.com/about/feed/&#60;/a&#62; and for a post it is: &#60;a href=&#34;http://cookieandkate.com/2011/easy-pesto-recipes/feed/.&#34; rel=&#34;nofollow&#34;&#62;http://cookieandkate.com/2011/easy-pesto-recipes/feed/.&#60;/a&#62; It doesn't appear to resort to those feeds on other Thematic sites.&#60;/p&#62;
&#60;p&#62;This is making me nuts. Any suggestions? How come the rest of my header code is inputted onto those page properly, but my custom feeds don't show up and random feeds do?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23282</link>
<pubDate>Fri, 30 Sep 2011 01:24:52 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23282@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;ok- i just looked at the change log which reads:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Added the constant &#38;lt;em&#38;gt;THEMATIC_COMPATIBLE_FEEDLINKS&#38;lt;/em&#38;gt; which defaults to &#38;lt;em&#38;gt;false&#38;lt;/em&#38;gt;. In this case the WordPress functions &#38;lt;code&#38;gt;add_theme_support( &#38;#39;automatic-feed-links&#38;#39; )&#38;lt;/code&#38;gt; is used. If you set it to TRUE, Thematic will use its own functionality. This is a requirement by the Theme Review Team.&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;basically if you have defined THEMATIC_COMPATIBLE_FEEDLINKS as true (which is suggested in the sample theme) then thematic will use its filters to create the feeds.  if this is not true then thematic will use the automatic-feed-links as seen in this bit of thematic's functions.php&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Create the feedlinks
if (!(THEMATIC_COMPATIBLE_FEEDLINKS)) {
	add_theme_support( &#38;#39;automatic-feed-links&#38;#39; );
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;if you want to use the filters to change the feeds, then you need to put &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;define(&#38;#39;THEMATIC_COMPATIBLE_FEEDLINKS&#38;#39;, true);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;in your child's functions.php&#60;/p&#62;
&#60;p&#62;hope that helps somehow
&#60;/p&#62;</description>
</item>
<item>
<title>cookieandkate on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23255</link>
<pubDate>Wed, 28 Sep 2011 14:53:41 +0000</pubDate>
<dc:creator>cookieandkate</dc:creator>
<guid isPermaLink="false">23255@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;No, I tried that after updating to 0.9.7.8. It didn't work for me. Did thematic add thematic_show_rss support back into 0.9.7.8?&#60;/p&#62;
&#60;p&#62;To quote from &#60;a href=&#34;http://themeshaper.com/forums/topic/how-to-switch-rss-to-feedburner-in-thematic-0975#post-15839,&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/how-to-switch-rss-to-feedburner-in-thematic-0975#post-15839,&#60;/a&#62; &#34;Thematic 0.9.6.2 and earlier had two functions that output the feed links. The filters for those functions are : thematic_show_rss and thematic_show_comments_rss&#60;/p&#62;
&#60;p&#62;Now with 0.9.7.5 Thematic has added support for a WP 3.0 function parameter add_theme_support('automatic_feed_links') . As a result if you are using 0.9.7.5 with WP 3.0 or greater those Thematic feed functions and filters do absolutely nothing.&#34;
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23247</link>
<pubDate>Tue, 27 Sep 2011 14:31:11 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23247@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i don't understand why you need the plugin or the automatic_feed support.  can't you just filter the thematic_show_rss ?   i know that it works fine as i filtered it OFF completely for someone in another thread.
&#60;/p&#62;</description>
</item>
<item>
<title>cookieandkate on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23246</link>
<pubDate>Tue, 27 Sep 2011 13:14:22 +0000</pubDate>
<dc:creator>cookieandkate</dc:creator>
<guid isPermaLink="false">23246@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;So does everyone have the wrong RSS feed listed in their &#38;lt;head&#38;gt; section? Or has anyone found a solution for this issue?
&#60;/p&#62;</description>
</item>
<item>
<title>cookieandkate on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23202</link>
<pubDate>Fri, 23 Sep 2011 06:21:51 +0000</pubDate>
<dc:creator>cookieandkate</dc:creator>
<guid isPermaLink="false">23202@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I straightened out the image upload error but would still very much like to fix the RSS feed issue. Any suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>cookieandkate on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23185</link>
<pubDate>Thu, 22 Sep 2011 20:35:30 +0000</pubDate>
<dc:creator>cookieandkate</dc:creator>
<guid isPermaLink="false">23185@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;By the way, I opened a new thread for the image issue here: &#60;a href=&#34;http://themeshaper.com/forums/topic/upload-image-http-error-urgent-please-help&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/upload-image-http-error-urgent-please-help&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>cookieandkate on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23183</link>
<pubDate>Thu, 22 Sep 2011 19:16:49 +0000</pubDate>
<dc:creator>cookieandkate</dc:creator>
<guid isPermaLink="false">23183@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Also, since updating to 0.9.7.8, I'm receiving an HTTP error every time I try to upload an image. This is a huge problem since my blog is photo based. Please, please help! Here's the error message:&#60;/p&#62;
&#60;p&#62;Internal Server Error&#60;/p&#62;
&#60;p&#62;The server encountered an internal error or misconfiguration and was unable to complete your request.&#60;/p&#62;
&#60;p&#62;Please contact the server administrator and inform them of the time the error occurred, and anything you might have done that may have caused the error.&#60;/p&#62;
&#60;p&#62;More information about this error may be available in the server error log.&#60;/p&#62;
&#60;p&#62;Apache Server at cookieandkate.com Port 80
&#60;/p&#62;</description>
</item>
<item>
<title>cookieandkate on "RSS feed override"</title>
<link>http://themeshaper.com/forums/topic/rss-feed-override#post-23180</link>
<pubDate>Thu, 22 Sep 2011 14:15:23 +0000</pubDate>
<dc:creator>cookieandkate</dc:creator>
<guid isPermaLink="false">23180@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi all,&#60;/p&#62;
&#60;p&#62;I'm having a terrible time switching the default RSS feeds shown in my source code to my Feedburner RSS feeds. I've installed the Feedburner Feedsmith Extend plugin, which helps but doesn't solve the source code problem. I've implemented the .htaccess hack, but can't tell that it's doing anything.&#60;/p&#62;
&#60;p&#62;I even upgraded to Thematic 0.9.7.8 so I could try this code in my functions.php: &#60;a href=&#34;http://themeshaper.com/forums/topic/rss-options#post-23111.&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/rss-options#post-23111.&#60;/a&#62; It didn't work. The original feeds are still displaying in my source code. It's a real problem because people are still able to subscribe to the wrong feed. &#60;/p&#62;
&#60;p&#62;To quote from &#60;a href=&#34;http://themeshaper.com/forums/topic/how-to-switch-rss-to-feedburner-in-thematic-0975#post-15839,&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/how-to-switch-rss-to-feedburner-in-thematic-0975#post-15839,&#60;/a&#62; &#34;Thematic 0.9.6.2 and earlier had two functions that output the feed links. The filters for those functions are : thematic_show_rss and thematic_show_comments_rss&#60;/p&#62;
&#60;p&#62;Now with 0.9.7.5 Thematic has added support for a WP 3.0 function parameter add_theme_support('automatic_feed_links') . As a result if you are using 0.9.7.5 with WP 3.0 or greater those Thematic feed functions and filters do absolutely nothing.&#34;&#60;/p&#62;
&#60;p&#62;I thought maybe that had changed with the 0.9.7.8 upgrade, but it doesn't seem to have changed it at all. &#60;/p&#62;
&#60;p&#62;Does anyone have a solution for this? I feel like it must be a very common issue that has gone under the radar. Help!
&#60;/p&#62;</description>
</item>
<item>
<title>cookieandkate on "Remove/ alter RSS Links from Source"</title>
<link>http://themeshaper.com/forums/topic/remove-alter-rss-links-from-source#post-23159</link>
<pubDate>Wed, 21 Sep 2011 04:14:53 +0000</pubDate>
<dc:creator>cookieandkate</dc:creator>
<guid isPermaLink="false">23159@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Actually, that won't work for Thematic .9.7.5 or above. I tried it on my blog and it didn't change anything. Here's a post that explains more: &#60;a href=&#34;http://themeshaper.com/forums/topic/how-to-switch-rss-to-feedburner-in-thematic-0975#post-15839&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/how-to-switch-rss-to-feedburner-in-thematic-0975#post-15839&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "RSS Options"</title>
<link>http://themeshaper.com/forums/topic/rss-options#post-23131</link>
<pubDate>Sat, 17 Sep 2011 22:49:44 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23131@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;which means no, you aren't.  try updating to the thematic at the link above
&#60;/p&#62;</description>
</item>
<item>
<title>ismh on "RSS Options"</title>
<link>http://themeshaper.com/forums/topic/rss-options#post-23130</link>
<pubDate>Sat, 17 Sep 2011 21:12:05 +0000</pubDate>
<dc:creator>ismh</dc:creator>
<guid isPermaLink="false">23130@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm using 0.9.7.7.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "RSS Options"</title>
<link>http://themeshaper.com/forums/topic/rss-options#post-23128</link>
<pubDate>Sat, 17 Sep 2011 14:38:11 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23128@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;are you using the latest dev stable version of thematic?&#60;/p&#62;
&#60;p&#62;developing.thematic4you.com/thematic-development-release/&#60;/p&#62;
&#60;p&#62;i just tested it locally and &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;link rel=&#38;quot;alternate&#38;quot; type=&#38;quot;application/rss+xml&#38;quot; href=&#38;quot;http://localhost/single/feed/&#38;quot; title=&#38;quot;Chicago Inter Handball Club Posts RSS feed&#38;quot; /&#38;gt;
&#38;lt;link rel=&#38;quot;alternate&#38;quot; type=&#38;quot;application/rss+xml&#38;quot; href=&#38;quot;http://localhost/single/comments/feed/&#38;quot; title=&#38;quot;Chicago Inter Handball Club Comments RSS feed&#38;quot; /&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;is definitely removed from the header w/ the addition of those filters
&#60;/p&#62;</description>
</item>
<item>
<title>ismh on "RSS Options"</title>
<link>http://themeshaper.com/forums/topic/rss-options#post-23127</link>
<pubDate>Sat, 17 Sep 2011 14:15:24 +0000</pubDate>
<dc:creator>ismh</dc:creator>
<guid isPermaLink="false">23127@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Sadly, no change after adding that to functions.php and emptying my browser cache.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "RSS Options"</title>
<link>http://themeshaper.com/forums/topic/rss-options#post-23125</link>
<pubDate>Sat, 17 Sep 2011 02:40:18 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23125@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you can tell those not to appear by switching their filters to false:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function no_rss(){
  return FALSE;
}
add_filter(&#38;#39;thematic_show_rss&#38;#39;,&#38;#39;no_rss&#38;#39;);
add_filter(&#38;#39;thematic_show_commentsrss&#38;#39;,&#38;#39;no_rss&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>ismh on "RSS Options"</title>
<link>http://themeshaper.com/forums/topic/rss-options#post-23111</link>
<pubDate>Thu, 15 Sep 2011 21:45:05 +0000</pubDate>
<dc:creator>ismh</dc:creator>
<guid isPermaLink="false">23111@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I added a link to my Feedburner feed to my header.php, file, and now it shows up as an option in the browser. How do I get rid of the two created by Wordpress. Here is what I currently see, I just want to show the first one being an option:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://d.pr/bmc&#34; rel=&#34;nofollow&#34;&#62;http://d.pr/bmc&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;512pixels.net
&#60;/p&#62;</description>
</item>
<item>
<title>middlesister on "Remove/ alter RSS Links from Source"</title>
<link>http://themeshaper.com/forums/topic/remove-alter-rss-links-from-source#post-22963</link>
<pubDate>Sun, 04 Sep 2011 10:48:34 +0000</pubDate>
<dc:creator>middlesister</dc:creator>
<guid isPermaLink="false">22963@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You can do it by filtering thematic_rss and thematic_show_commentsrss.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function remove_comments_rss( $display ) {
    return FALSE;
}
add_filter(&#38;#39;thematic_show_commentsrss&#38;#39;, &#38;#39;remove_comments_rss&#38;#39;);

function my_feed_link( $content ) {
    $content = &#38;#39;YOUR LINK&#38;#39;;
    return $content;
}
add_filter(&#38;#39;thematic_rss&#38;#39;, &#38;#39;my_feed_link&#38;#39;  );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Put this in your child themes functions.php.
&#60;/p&#62;</description>
</item>
<item>
<title>Crawler on "Remove/ alter RSS Links from Source"</title>
<link>http://themeshaper.com/forums/topic/remove-alter-rss-links-from-source#post-22921</link>
<pubDate>Wed, 31 Aug 2011 13:08:04 +0000</pubDate>
<dc:creator>Crawler</dc:creator>
<guid isPermaLink="false">22921@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
I am new to the forum but am really excited about Thematic and the Power Blog.&#60;br /&#62;
I run into a problem recently, which I m not able to solve by myself, perhaps someone can help me out.&#60;br /&#62;
When I look at my source code, I find two RSS links right below the meta tags:&#60;br /&#62;
&#60;code&#62;link rel=&#34;alternate&#34; type=&#34;application/rss+xml&#34; title=&#34;test blog &#38;raquo; Feed&#34; href=&#34;http://127.0.0.1/feed&#34;&#60;br /&#62;
link rel=&#34;alternate&#34; type=&#34;application/rss+xml&#34; title=&#34;test blog &#38;raquo; Kommentar Feed&#34; href=&#34;http://127.0.0.1/comments/feed&#34;&#60;/code&#62;&#60;br /&#62;
I cant figure out where these come from. I would like to remove the comments feed and change the &#34;normal&#34; feed to my feedburner url.&#60;br /&#62;
Can anyone point out how to do this? Im even not sure if these links originate in Thematic or the Power Blog..&#60;br /&#62;
Im running Thematic 0.9.7.7 and Power Blog 1.1&#60;br /&#62;
Thanks in advance
&#60;/p&#62;</description>
</item>
<item>
<title>sinette on "How to Remove (RSS) in Archive Template"</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-rss-in-archive-template#post-22456</link>
<pubDate>Thu, 28 Jul 2011 14:03:18 +0000</pubDate>
<dc:creator>sinette</dc:creator>
<guid isPermaLink="false">22456@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;hi I'm using the autofocus theme and I have the same question as above but... where excatly do i put this code in the thematic functions.php? I pasted it at the very end but nothing happend.&#60;br /&#62;
secondly I would like to have not 2 categories shown on my archives page but only one. How can 1 delete the month category?&#60;br /&#62;
Help much appreciated!
&#60;/p&#62;</description>
</item>
<item>
<title>chris_s on "No Atom support?"</title>
<link>http://themeshaper.com/forums/topic/no-atom-support#post-22280</link>
<pubDate>Tue, 12 Jul 2011 15:06:33 +0000</pubDate>
<dc:creator>chris_s</dc:creator>
<guid isPermaLink="false">22280@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Has this still not been resolved?
&#60;/p&#62;</description>
</item>
<item>
<title>huyz on "No Atom support?"</title>
<link>http://themeshaper.com/forums/topic/no-atom-support#post-22226</link>
<pubDate>Fri, 08 Jul 2011 07:19:49 +0000</pubDate>
<dc:creator>huyz</dc:creator>
<guid isPermaLink="false">22226@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yeah it's time to update Thematic.  Where's the Atom feed?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "how to change RSS to FeedBurner?"</title>
<link>http://themeshaper.com/forums/topic/how-to-change-rss-to-feedburner#post-19147</link>
<pubDate>Sun, 13 Feb 2011 09:55:38 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">19147@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/forums/topic/how-to-switch-rss-to-feedburner-in-thematic-0975&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/how-to-switch-rss-to-feedburner-in-thematic-0975&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>nixternal on "how to change RSS to FeedBurner?"</title>
<link>http://themeshaper.com/forums/topic/how-to-change-rss-to-feedburner#post-19144</link>
<pubDate>Sun, 13 Feb 2011 03:01:55 +0000</pubDate>
<dc:creator>nixternal</dc:creator>
<guid isPermaLink="false">19144@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I did this without using a plugin, by editing my .htaccess as such&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
RewriteCond %{HTTP_USER_AGENT} &#124;^.*(FeedBurner&#124;FeedValidator) [NC]&#60;br /&#62;
RewriteRule ^feed/?.*$ &#60;a href=&#34;http://feeds.feedburner.com/nixternal&#34; rel=&#34;nofollow&#34;&#62;http://feeds.feedburner.com/nixternal&#60;/a&#62; [L,NC,R=302]&#60;br /&#62;
RewriteRule ^comments/feed/?.*$ &#60;a href=&#34;http://feeds.feedburner.com/nixternal-comments&#34; rel=&#34;nofollow&#34;&#62;http://feeds.feedburner.com/nixternal-comments&#60;/a&#62; [L,NC,R=302]&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;If you don't want to forward you comments feed, then just get rid of the 2nd rewrite rule. This is placed within the &#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
&#38;lt;IfModule mod_rewrite.c&#38;gt;&#60;br /&#62;
...&#60;br /&#62;
&#38;lt;/IfModule&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;section that probably has commented out 'BEGIN WordPress'. First time posting on this forum, so I am hoping those code sections work out.
&#60;/p&#62;</description>
</item>
<item>
<title>Solomon on "how to change RSS to FeedBurner?"</title>
<link>http://themeshaper.com/forums/topic/how-to-change-rss-to-feedburner#post-19141</link>
<pubDate>Sun, 13 Feb 2011 01:55:35 +0000</pubDate>
<dc:creator>Solomon</dc:creator>
<guid isPermaLink="false">19141@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Would the FD Feedburner plugin be what you're looking for?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/feedburner-plugin/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/feedburner-plugin/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#34;Redirects the main feed and optionally the comments feed seamlessly and transparently to Feedburner.com.&#34;
&#60;/p&#62;</description>
</item>
<item>
<title>incoe on "how to change RSS to FeedBurner?"</title>
<link>http://themeshaper.com/forums/topic/how-to-change-rss-to-feedburner#post-19138</link>
<pubDate>Sun, 13 Feb 2011 00:42:26 +0000</pubDate>
<dc:creator>incoe</dc:creator>
<guid isPermaLink="false">19138@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;i was wondering is there a way to change the regular post rss feed to feedburner and leave the comments as it is or add a feedburner for comments too?&#60;/p&#62;
&#60;p&#62;thanks :-)
&#60;/p&#62;</description>
</item>
<item>
<title>Solomon on "Force a private full-text RSS feed - help with template"</title>
<link>http://themeshaper.com/forums/topic/force-a-private-full-text-rss-feed-help-with-template#post-18495</link>
<pubDate>Wed, 19 Jan 2011 18:37:39 +0000</pubDate>
<dc:creator>Solomon</dc:creator>
<guid isPermaLink="false">18495@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I need to output a single full-text feed for a news service (Newstex), but keep this private while my ordinary feeds show only excerpts.&#60;/p&#62;
&#60;p&#62;I've looked all over but am having trouble making this work. I followed the method on this page: &#60;a href=&#34;http://yoast.com/custom-rss-feeds-wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://yoast.com/custom-rss-feeds-wordpress/&#60;/a&#62; and made it work, but it still shows only excerpts (yes, I am looking at it in Google Reader).&#60;/p&#62;
&#60;p&#62;Can someone tell me what I need to change in there to get it to show the full post, pictures and all (it is right now not showing pics, for instance, just the WordPress shortcode)? Or point me to a simpler method?&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
</item>
<item>
<title>Bluesky on "ADD RSS to CUSTOM POST TYPE"</title>
<link>http://themeshaper.com/forums/topic/add-rss-to-custom-post-type#post-16822</link>
<pubDate>Mon, 08 Nov 2010 09:36:52 +0000</pubDate>
<dc:creator>Bluesky</dc:creator>
<guid isPermaLink="false">16822@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I recently installed Custom POst Type UI plugin that gives me what I need.&#60;br /&#62;
But none of the posts send RSS..&#60;br /&#62;
I found the following function taken from &#60;a href=&#34;http://core.trac.wordpress.org/ticket/12943&#34; rel=&#34;nofollow&#34;&#62;http://core.trac.wordpress.org/ticket/12943&#60;/a&#62;&#60;br /&#62;
Hw could I safely include it in my functions.php ?&#60;/p&#62;
&#60;p&#62;function myfeed_request($qv) {&#60;br /&#62;
	if (isset($qv['feed']))&#60;br /&#62;
		$qv['post_type'] = get_post_types();&#60;br /&#62;
	return $qv;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;add_filter('request', 'myfeed_request');
&#60;/p&#62;</description>
</item>

</channel>
</rss>
