<?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: How to Add a RSS Feed Without a Plugin Using the WordPress Fetch Feed Function</title>
	<atom:link href="http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/</link>
	<description>Kim Woodbridge WordPress Consultant</description>
	<lastBuildDate>Fri, 10 Feb 2012 18:58:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Grant</title>
		<link>http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/#comment-24983</link>
		<dc:creator>Grant</dc:creator>
		<pubDate>Tue, 02 Aug 2011 01:23:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.kimwoodbridge.com/?p=6882#comment-24983</guid>
		<description>Fixed code...

&lt;code&gt;get_item_quantity(3); // specify number of items
	$items = $feed-&gt;get_items(0, $limit); // create an array of items

} ?&gt;

&lt;a href=&quot;http://www.tmz.com&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;
&lt;?php
if ($limit == 0) echo &#039;The feed is either empty or unavailable.&#039;;
else foreach ($items as $item) : ?&gt;

	&lt;a href=&quot;get_permalink(); ?&gt;&quot; 
	  title=&quot;get_date(&#039;j F Y @ g:i a&#039;); ?&gt;&quot; target=&quot;_blank&quot;&gt;
		get_title(); ?&gt;
	&lt;/a&gt;


&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Fixed code&#8230;</p>
<p><code>get_item_quantity(3); // specify number of items<br />
	$items = $feed-&gt;get_items(0, $limit); // create an array of items</p>
<p>} ?&gt;</p>
<p><a href="http://www.tmz.com" rel="nofollow"></a><br />
&lt;?php<br />
if ($limit == 0) echo &#039;The feed is either empty or unavailable.';<br />
else foreach ($items as $item) : ?&gt;</p>
<p>	&lt;a href=&quot;get_permalink(); ?&gt;"<br />
	  title="get_date('j F Y @ g:i a'); ?&gt;" target="_blank"&gt;<br />
		get_title(); ?&gt;</p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grant</title>
		<link>http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/#comment-24982</link>
		<dc:creator>Grant</dc:creator>
		<pubDate>Tue, 02 Aug 2011 01:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.kimwoodbridge.com/?p=6882#comment-24982</guid>
		<description>Hi, I&#039;ve recently added this code to my site and for some reason keep getting the &quot;No items returned&quot; statement.  I changed the code around slightly, here&#039;s what I have:

&lt;code&gt; 
FEATURED PARTNERS
get_item_quantity(3); // specify number of items
	$items = $feed-&gt;get_items(0, $limit); // create an array of items

} ?&gt;

&lt;a href=&quot;http://www.tmz.com&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;
&lt;?php
if ($limit == 0) echo &#039;The feed is either empty or unavailable.&#039;;
else foreach ($items as $item) : ?&gt;

	&lt;a href=&quot;get_permalink(); ?&gt;&quot; 
	  title=&quot;get_date(&#039;j F Y @ g:i a&#039;); ?&gt;&quot; target=&quot;_blank&quot;&gt;
		get_title(); ?&gt;
	&lt;/a&gt;



&lt;/code&gt;

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;ve recently added this code to my site and for some reason keep getting the &#8220;No items returned&#8221; statement.  I changed the code around slightly, here&#8217;s what I have:</p>
<p><code><br />
FEATURED PARTNERS<br />
get_item_quantity(3); // specify number of items<br />
	$items = $feed-&gt;get_items(0, $limit); // create an array of items</p>
<p>} ?&gt;</p>
<p><a href="http://www.tmz.com" rel="nofollow"></a><br />
&lt;?php<br />
if ($limit == 0) echo &#039;The feed is either empty or unavailable.';<br />
else foreach ($items as $item) : ?&gt;</p>
<p>	&lt;a href=&quot;get_permalink(); ?&gt;"<br />
	  title="get_date('j F Y @ g:i a'); ?&gt;" target="_blank"&gt;<br />
		get_title(); ?&gt;</p>
<p></code></p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kim Woodbridge</title>
		<link>http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/#comment-13722</link>
		<dc:creator>Kim Woodbridge</dc:creator>
		<pubDate>Tue, 16 Feb 2010 13:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.kimwoodbridge.com/?p=6882#comment-13722</guid>
		<description>Hi Norbert - Thanks I fixed that.

That&#039;s a good question - I don&#039;t have an answer without testing it.  Maybe someone has posted something like that on the WordPress forums.</description>
		<content:encoded><![CDATA[<p>Hi Norbert &#8211; Thanks I fixed that.</p>
<p>That&#8217;s a good question &#8211; I don&#8217;t have an answer without testing it.  Maybe someone has posted something like that on the WordPress forums.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Norbert</title>
		<link>http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/#comment-13719</link>
		<dc:creator>Norbert</dc:creator>
		<pubDate>Tue, 16 Feb 2010 11:42:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.kimwoodbridge.com/?p=6882#comment-13719</guid>
		<description>hey Kim thank you so much for getting this. Copy&amp;pasting your snipped i noticed that the  link tag isn&#039;t closed ...just to note for other guys using it. 
Kim have you any idea how (in &quot;the simplepie-loop&quot;) i can read out the value of a customfield of an item(post)? 
Thanks very much</description>
		<content:encoded><![CDATA[<p>hey Kim thank you so much for getting this. Copy&amp;pasting your snipped i noticed that the  link tag isn&#8217;t closed &#8230;just to note for other guys using it.<br />
Kim have you any idea how (in &#8220;the simplepie-loop&#8221;) i can read out the value of a customfield of an item(post)?<br />
Thanks very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis Edell</title>
		<link>http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/#comment-13380</link>
		<dc:creator>Dennis Edell</dc:creator>
		<pubDate>Wed, 20 Jan 2010 16:53:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.kimwoodbridge.com/?p=6882#comment-13380</guid>
		<description>OK not that&#039;s cool. I have an idea in mind and if I had to use all widgets, the blog would take 15 minutes to load. LOL</description>
		<content:encoded><![CDATA[<p>OK not that&#8217;s cool. I have an idea in mind and if I had to use all widgets, the blog would take 15 minutes to load. LOL</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The WordPress Fetch Feed Function and the Feed Cache &#124; (Anti) Social Development</title>
		<link>http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/#comment-13377</link>
		<dc:creator>The WordPress Fetch Feed Function and the Feed Cache &#124; (Anti) Social Development</dc:creator>
		<pubDate>Wed, 20 Jan 2010 05:03:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.kimwoodbridge.com/?p=6882#comment-13377</guid>
		<description>[...] A couple of days ago I wrote about how to use a RSS feed with the WordPress fetch feed function. [...]</description>
		<content:encoded><![CDATA[<p>[...] A couple of days ago I wrote about how to use a RSS feed with the WordPress fetch feed function. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kim Woodbridge</title>
		<link>http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/#comment-13373</link>
		<dc:creator>Kim Woodbridge</dc:creator>
		<pubDate>Wed, 20 Jan 2010 03:16:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.kimwoodbridge.com/?p=6882#comment-13373</guid>
		<description>Hi Dennis - It looks like you have a widgetized footer and are using the RSS feed widget, right?  This code example would be used instead of the widget and could be placed anywhere within the template files.</description>
		<content:encoded><![CDATA[<p>Hi Dennis &#8211; It looks like you have a widgetized footer and are using the RSS feed widget, right?  This code example would be used instead of the widget and could be placed anywhere within the template files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis Edell</title>
		<link>http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/#comment-13368</link>
		<dc:creator>Dennis Edell</dc:creator>
		<pubDate>Tue, 19 Jan 2010 21:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.kimwoodbridge.com/?p=6882#comment-13368</guid>
		<description>Just so I have this right...check out my footer, see the two feeds? Is this what you&#039;re referring to?
.-= Dennis Edell´s last blog ..&lt;a href=&quot;http://www.directsaleswebmarketing.com/blog-move-is-immanent-im-looking-for-launch-partners/&quot; rel=&quot;nofollow&quot;&gt;Blog Move Is Imminent ! I’m Looking For Launch Partners…&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<p>Just so I have this right&#8230;check out my footer, see the two feeds? Is this what you&#8217;re referring to?<br />
.-= Dennis Edell´s last blog ..<a href="http://www.directsaleswebmarketing.com/blog-move-is-immanent-im-looking-for-launch-partners/" rel="nofollow">Blog Move Is Imminent ! I’m Looking For Launch Partners…</a> =-.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis Edell</title>
		<link>http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/#comment-13367</link>
		<dc:creator>Dennis Edell</dc:creator>
		<pubDate>Tue, 19 Jan 2010 21:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.kimwoodbridge.com/?p=6882#comment-13367</guid>
		<description>I thought that after posting, but didn&#039;t wanna look stupid twice in the same comment section. lol
.-= Dennis Edell´s last blog ..&lt;a href=&quot;http://www.directsaleswebmarketing.com/blog-move-is-immanent-im-looking-for-launch-partners/&quot; rel=&quot;nofollow&quot;&gt;Blog Move Is Imminent ! I’m Looking For Launch Partners…&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<p>I thought that after posting, but didn&#8217;t wanna look stupid twice in the same comment section. lol<br />
.-= Dennis Edell´s last blog ..<a href="http://www.directsaleswebmarketing.com/blog-move-is-immanent-im-looking-for-launch-partners/" rel="nofollow">Blog Move Is Imminent ! I’m Looking For Launch Partners…</a> =-.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kim Woodbridge</title>
		<link>http://www.kimwoodbridge.com/how-to-add-a-rss-feed-without-a-plugin-using-the-wordpress-fetch-feed-function/#comment-13353</link>
		<dc:creator>Kim Woodbridge</dc:creator>
		<pubDate>Tue, 19 Jan 2010 02:16:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.kimwoodbridge.com/?p=6882#comment-13353</guid>
		<description>Thanks Vered - I have lots of ideas right now but not enough time. ;-)</description>
		<content:encoded><![CDATA[<p>Thanks Vered &#8211; I have lots of ideas right now but not enough time. ;-)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

