<?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: Feed Cache in WordPress</title>
	<atom:link href="http://wpengineer.com/feed-cache-in-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpengineer.com/feed-cache-in-wordpress/</link>
	<description>WordPress News, Hacks, Tipps, Tutorials, Plugins and Themes</description>
	<lastBuildDate>Wed, 10 Mar 2010 23:00:15 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: The WordPress Fetch Feed Function and the Feed Cache &#124; (Anti) Social Development</title>
		<link>http://wpengineer.com/feed-cache-in-wordpress/#comment-3301</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:28 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1820#comment-3301</guid>
		<description>[...] So, I started to search and ask how often the fetch feed function pulls in the new feeds. I could not, however, find an answer to my question. That&#8217;s because I was asking the wrong question. The WordPress feed cache is what determines how often the feed is pulled in. In my search for answers I finally found this article by WP Engineer &#8211; Feed Cache in WordPress. [...]</description>
		<content:encoded><![CDATA[<p>[...] So, I started to search and ask how often the fetch feed function pulls in the new feeds. I could not, however, find an answer to my question. That&#8217;s because I was asking the wrong question. The WordPress feed cache is what determines how often the feed is pulled in. In my search for answers I finally found this article by WP Engineer &#8211; Feed Cache in WordPress. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: r-a-y</title>
		<link>http://wpengineer.com/feed-cache-in-wordpress/#comment-3296</link>
		<dc:creator>r-a-y</dc:creator>
		<pubDate>Wed, 20 Jan 2010 01:29:29 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1820#comment-3296</guid>
		<description>Hmm... ok thanks Frank.

Not a fan of caching RSS feeds to DB.</description>
		<content:encoded><![CDATA[<p>Hmm... ok thanks Frank.</p>
<p>Not a fan of caching RSS feeds to DB.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://wpengineer.com/feed-cache-in-wordpress/#comment-3255</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Wed, 13 Jan 2010 15:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1820#comment-3255</guid>
		<description>@r-a-y: to the DB, table _options, not on webspace in a directory</description>
		<content:encoded><![CDATA[<p>@r-a-y: to the DB, table _options, not on webspace in a directory</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Phillips</title>
		<link>http://wpengineer.com/feed-cache-in-wordpress/#comment-3253</link>
		<dc:creator>Scott Phillips</dc:creator>
		<pubDate>Tue, 12 Jan 2010 18:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1820#comment-3253</guid>
		<description>Anyone know if wp_feed_cache_transient_lifetime is global and applies to all feeds, or whether it can be used a on a per feed level.

Such as:
add_filter( &#039;wp_feed_cache_transient_lifetime&#039;, create_function( &#039;$a&#039;, &#039;return 1800;&#039; );
$feed = fetch_feed( &#039;http://example.com/feedurl&#039; );
remove_filter(&#039;wp_feed_cache_transient_lifetime&#039;, &#039;hourly_feed&#039;);

//Next Feed with diff. cache time
add_filter( &#039;wp_feed_cache_transient_lifetime&#039;, create_function( &#039;$a&#039;, &#039;return 4800;&#039; );
$feed = fetch_feed( &#039;http://example.com/feedurl&#039; );
remove_filter(&#039;wp_feed_cache_transient_lifetime&#039;, &#039;hourly_feed&#039;);</description>
		<content:encoded><![CDATA[<p>Anyone know if wp_feed_cache_transient_lifetime is global and applies to all feeds, or whether it can be used a on a per feed level.</p>
<p>Such as:<br />
add_filter( 'wp_feed_cache_transient_lifetime', create_function( '$a', 'return 1800;' );<br />
$feed = fetch_feed( 'http://example.com/feedurl' );<br />
remove_filter('wp_feed_cache_transient_lifetime', 'hourly_feed');</p>
<p>//Next Feed with diff. cache time<br />
add_filter( 'wp_feed_cache_transient_lifetime', create_function( '$a', 'return 4800;' );<br />
$feed = fetch_feed( 'http://example.com/feedurl' );<br />
remove_filter('wp_feed_cache_transient_lifetime', 'hourly_feed');</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kim Woodbridge</title>
		<link>http://wpengineer.com/feed-cache-in-wordpress/#comment-3244</link>
		<dc:creator>Kim Woodbridge</dc:creator>
		<pubDate>Mon, 11 Jan 2010 00:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1820#comment-3244</guid>
		<description>Thanks for this post!  I started using the fetch feed function to display delicious bookmarks feeds with specific tags in the footer of my site.  I couldn&#039;t figure out why the feed wasn&#039;t being updated even though I had added new bookmarks with that tag.  

I found your article, added the add filter to my functions file and now the feed is being updated.</description>
		<content:encoded><![CDATA[<p>Thanks for this post!  I started using the fetch feed function to display delicious bookmarks feeds with specific tags in the footer of my site.  I couldn't figure out why the feed wasn't being updated even though I had added new bookmarks with that tag.  </p>
<p>I found your article, added the add filter to my functions file and now the feed is being updated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: r-a-y</title>
		<link>http://wpengineer.com/feed-cache-in-wordpress/#comment-3002</link>
		<dc:creator>r-a-y</dc:creator>
		<pubDate>Tue, 15 Dec 2009 18:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1820#comment-3002</guid>
		<description>Does the new SimplePie library in WP 2.8 cache to the DB or to a directory?

I&#039;d rather RSS feeds cache to a directory.</description>
		<content:encoded><![CDATA[<p>Does the new SimplePie library in WP 2.8 cache to the DB or to a directory?</p>
<p>I'd rather RSS feeds cache to a directory.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
