<?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"
	>
<channel>
	<title>Comments on: Ridding Wordpress Plugins of Template Tags</title>
	<atom:link href="http://climbtothestars.org/archives/2007/12/04/ridding-wordpress-plugins-of-template-tags/feed/" rel="self" type="application/rss+xml" />
	<link>http://climbtothestars.org/archives/2007/12/04/ridding-wordpress-plugins-of-template-tags/</link>
	<description>More than just a blog.</description>
	<pubDate>Fri, 08 Aug 2008 00:21:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Stephanie</title>
		<link>http://climbtothestars.org/archives/2007/12/04/ridding-wordpress-plugins-of-template-tags/#comment-416787</link>
		<dc:creator>Stephanie</dc:creator>
		<pubDate>Sun, 06 Jul 2008 16:29:21 +0000</pubDate>
		<guid isPermaLink="false">http://climbtothestars.org/archives/2007/12/04/ridding-wordpress-plugins-of-template-tags/#comment-416787</guid>
		<description>&lt;p&gt;Right, this is what I used:&lt;/p&gt;

&lt;pre&gt;// bunny stuff for embedding
// place similar posts in different places whether in blog or in feed
function sp_embed_similar_posts($old_content){
if(is_feed()) {
                $new_content = $old_content . similar_posts();
}else
{
                $new_content = similar_posts() . $old_content;
        }
return $new_content;
}

add_action('the_content', 'sp_embed_similar_posts');

// end bunny stuff
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Right, this is what I used:</p>
<pre>// bunny stuff for embedding
// place similar posts in different places whether in blog or in feed
function sp_embed_similar_posts($old_content){
if(is_feed()) {
                $new_content = $old_content . similar_posts();
}else
{
                $new_content = similar_posts() . $old_content;
        }
return $new_content;
}

add_action('the_content', 'sp_embed_similar_posts');

// end bunny stuff
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephanie</title>
		<link>http://climbtothestars.org/archives/2007/12/04/ridding-wordpress-plugins-of-template-tags/#comment-416747</link>
		<dc:creator>Stephanie</dc:creator>
		<pubDate>Sun, 06 Jul 2008 13:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://climbtothestars.org/archives/2007/12/04/ridding-wordpress-plugins-of-template-tags/#comment-416747</guid>
		<description>&lt;p&gt;So, I'm having the same problem second time around as I did first time, only I can't remember how I solved it. I want to prevent the "automatic injection" from happening if we're in a feed (because in the feed, I put the related posts at the end).&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>So, I&#8217;m having the same problem second time around as I did first time, only I can&#8217;t remember how I solved it. I want to prevent the &#8220;automatic injection&#8221; from happening if we&#8217;re in a feed (because in the feed, I put the related posts at the end).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
