<?xml version="1.0" encoding="utf-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
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/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
xmlns:media="http://search.yahoo.com/mrss/"><channel><title>Yoast &#187; Feedburner</title> <atom:link href="http://yoast.com/tag/feedburner/feed/" rel="self" type="application/rss+xml" /><link>http://yoast.com</link> <description>Tweaking Websites</description> <lastBuildDate>Wed, 08 Feb 2012 10:16:45 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.4-alpha-19827</generator> <image><title>Yoast</title> <url>http://yoast.com/wp-content/themes/yoast-v2/images/yoast-logo-rss.png</url><link>http://yoast.com</link> <width>144</width> <height>103</height> <description>Tweaking Websites</description> </image><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>FeedBurner subscription show-off revisited</title><link>http://yoast.com/feedburner-subscription-feedproxy-google/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=feedburner-subscription-feedproxy-google</link> <comments>http://yoast.com/feedburner-subscription-feedproxy-google/#comments</comments> <pubDate>Sun, 21 Dec 2008 19:08:00 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Feedburner]]></category> <category><![CDATA[WordPress Themes]]></category><guid
isPermaLink="false">http://yoast.com/?p=1311</guid> <description><![CDATA[<p>A couple of months back I blogged about how to show off your FeedBurner subscribers. In the comments then, a couple of people told me the code didn't work for them. After a few back and forths I found out those people were on FeedBurner's new servers, the Google ones. This new server actually has [...]</p><p><a
href="http://yoast.com/feedburner-subscription-feedproxy-google/">FeedBurner subscription show-off revisited</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>A couple of months back I blogged about how to <a
href="http://yoast.com/feedburner-subscriber-count/">show off your FeedBurner subscribers</a>. In the comments then, a couple of people told me the code didn't work for them. After a few back and forths I found out those people were on FeedBurner's new servers, the Google ones.</p><p>This new server actually has a new API Endpoint as well, and this endpoint brings along a bit of trouble. Google in all its wisdom decided to move the API onto HTTPS. Problem is, I was using Snoopy, which rocks, but doesn't work with HTTPS easily. It needs CURL for that, and if it needs CURL anyway, why not use the built-in PHP CURL. So, here's the code to use when you're on feedproxy (if this doesn't work for you, try the above linked older code):</p><pre class="brush: php; title: ; notranslate">$url	= 'https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=joostdevalk';
$ch 	= curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
if ($data) {
	preg_match('/circulation=\'([0-9]+)\'/',$data, $matches);
	if ($matches[1] != 0)
		$fb['count'] = $matches[1];
	$fb['lastcheck'] = mktime();
	update_option('feedburnersubscribecount',$fb);
}
echo $fb['count'].' Subscribers can\'t be wrong! Subscribe by &lt;a href='http://yoast.com/email-blog-updates/'&gt;email&lt;/a&gt; or to the &lt;a rel='nofollow' href='http://feeds.feedburner.com/joostdevalk'&gt;RSS feed&lt;/a&gt; now!';</pre><p>Enjoy!</p><p><a
href="http://yoast.com/feedburner-subscription-feedproxy-google/">FeedBurner subscription show-off revisited</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/feedburner-subscription-feedproxy-google/feed/</wfw:commentRss> <slash:comments>22</slash:comments> </item> <item><title>Showing off your FeedBurner subscribers</title><link>http://yoast.com/feedburner-subscriber-count/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=feedburner-subscriber-count</link> <comments>http://yoast.com/feedburner-subscriber-count/#comments</comments> <pubDate>Mon, 27 Oct 2008 13:47:54 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Feedburner]]></category><guid
isPermaLink="false">http://yoast.com/?p=1272</guid> <description><![CDATA[<p>Quite a few websites have started to show of their FeedBurner subscriber count with something else than a widget. To do that, you have to be able to grab the number of subscribers through the FeedBurner API. Now I bet you want to know how! It's bloody easy in WordPress, just do this: Copy, paste, [...]</p><p><a
href="http://yoast.com/feedburner-subscriber-count/">Showing off your FeedBurner subscribers</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn2.yoast.com/wp-content/uploads/2008/10/smashing-subscribers.png" alt="smashing-subscribers.png" style="margin-top: -20px;" width="166" height="126" align="right" />Quite a few websites have started to show of their FeedBurner subscriber count with something else than a widget. To do that, you have to be able to grab the number of subscribers through the <a
href="http://code.google.com/apis/feedburner/">FeedBurner API</a>.</p><p>Now I bet you want to know how! It's bloody easy in WordPress, just do this:</p><pre class="brush: php; title: ; notranslate">$fb = get_option('feedburnersubscribecount');
if ($fb['lastcheck'] &gt; ( mktime() - 600 ) ) {
	$snoopy = new Snoopy;
	$result = $snoopy&gt;fetch('http://api.feedburner.com/awareness/1.0/GetFeedData?uri=feedburnerid');
	if ($result) {
		preg_match('/circulation=\'([0-9]+)\'/',$snoopy-&gt;results, $matches);
		if ($matches[1] != 0)
			$fb['count'] = $matches[1];
		$fb['lastcheck'] = mktime();
		update_option('feedburnersubscribecount',$fb);
	}
}
echo $fb['count'].' Subscribers can\'t be wrong! Subscribe by &lt;a href='http://yoast.com/email-blog-updates/'&gt;email&lt;/a&gt; or to the &lt;a rel='nofollow' href='http://feeds.feedburner.com/joostdevalk'&gt;RSS feed&lt;/a&gt; now!';</pre><p>Copy, paste, replace <code>feedburnerid</code> with your own FeedBurner ID, and you're done!</p><p><strong>Update:</strong> updated the code to include caching, as you might overload the FeedBurner API otherwise.</p><p><strong>Update 2:</strong> if you get an error saying it can't find the class Snoopy, add this above the code:</p><pre class="brush: php; title: ; notranslate">require_once(ABSPATH . 'wp-includes/class-snoopy.php');</pre><p>If this doesn't work for you, and you're on FeedBurners new feedproxy.google.com servers, try <a
href="http://yoast.com/feedburner-subscription-feedproxy-google/">this solution</a>.</p><p><a
href="http://yoast.com/feedburner-subscriber-count/">Showing off your FeedBurner subscribers</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/feedburner-subscriber-count/feed/</wfw:commentRss> <slash:comments>57</slash:comments> <media:thumbnail url="http://cdn2.yoast.com/wp-content/uploads/2008/10/smashing-subscribers.png" /> <media:content url="http://cdn2.yoast.com/wp-content/uploads/2008/10/smashing-subscribers.png" medium="image"> <media:title type="html">smashing-subscribers.png</media:title> </media:content> </item> <item><title>FeedBurner: MyBrand is not an uncommon use of my feed&#8230;</title><link>http://yoast.com/feedburner-mybrand-is-not-an-uncommon-use-of-my-feed/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=feedburner-mybrand-is-not-an-uncommon-use-of-my-feed</link> <comments>http://yoast.com/feedburner-mybrand-is-not-an-uncommon-use-of-my-feed/#comments</comments> <pubDate>Thu, 18 Oct 2007 08:55:45 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Online Marketing]]></category> <category><![CDATA[Feedburner]]></category> <category><![CDATA[RSS]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/feedburner-mybrand-is-not-an-uncommon-use-of-my-feed/</guid> <description><![CDATA[<p>I was logging into my FeedBurner account this morning to check out my stats, and this is what I saw: Now, I would hope, that my 2 main feed URL's (the first redirects to the second), would NOT be an "uncommon" use of my feeds.... Now Graywolf already found out the hard way that they [...]</p><p><a
href="http://yoast.com/feedburner-mybrand-is-not-an-uncommon-use-of-my-feed/">FeedBurner: MyBrand is not an uncommon use of my feed&#8230;</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>I was logging into my FeedBurner account this morning to check out my stats, and this is what I saw:</p><p><img
src="http://cdn2.yoast.com/wp-content/uploads/2007/10/feedburner.png" alt="FeedBurner uncommon uses" /></p><p>Now, I would hope, that my 2 main feed URL's (the first redirects to the second), would NOT be an "uncommon" use of my feeds.... Now Graywolf already found out the hard way that they <a
href="http://www.wolf-howl.com/blogs/what-happens-when-you-dont-set-up-your-feed-correctly/">can't handle redirects</a>, but this is even more "stupid".</p><p>Ow and another thing, how come FeedBurner can always show yesterday's stats in theÂ  FeedCount image, and that it takes a LOT longer to update in the API data?</p><p>Don't get me wrong, I love FeedBurner, but these are things they could quite easily fix...</p><p><a
href="http://yoast.com/feedburner-mybrand-is-not-an-uncommon-use-of-my-feed/">FeedBurner: MyBrand is not an uncommon use of my feed&#8230;</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/feedburner-mybrand-is-not-an-uncommon-use-of-my-feed/feed/</wfw:commentRss> <slash:comments>4</slash:comments> <media:thumbnail url="http://cdn2.yoast.com/wp-content/uploads/2007/10/feedburner.png" /> <media:content url="http://cdn2.yoast.com/wp-content/uploads/2007/10/feedburner.png" medium="image"> <media:title type="html">FeedBurner uncommon uses</media:title> </media:content> </item> <item><title>FeedBurner history comparison</title><link>http://yoast.com/feedburner-history-comparison/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=feedburner-history-comparison</link> <comments>http://yoast.com/feedburner-history-comparison/#comments</comments> <pubDate>Mon, 01 Jan 2007 14:28:58 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Webdesign & development]]></category> <category><![CDATA[Feedburner]]></category> <category><![CDATA[RSS]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/blog/feedburner-history-comparison/</guid> <description><![CDATA[<p>When I was working on my FeedBurner history graph tool, I thought it would be cool to be able to display the growth of a blog relative to some other blog as well, so i came up with the idea of "just" plotting a few other lines next to each other, showing how they performed [...]</p><p><a
href="http://yoast.com/feedburner-history-comparison/">FeedBurner history comparison</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>When I was working on my <a
href="http://yoast.com/code/feedburner-graph/">FeedBurner history graph</a> tool, I thought it would be cool to be able to display the growth of a blog relative to some other blog as well, so i came up with the idea of "just" plotting a few other lines next to each other, showing how they performed relatively.</p><p>Hence my <a
href="http://yoast.com/code/feedburner-graph/history-compare.php">FeedBurner History comparison</a> tool was born, go check it out, and give me your feedback!</p><p><a
href="http://yoast.com/feedburner-history-comparison/">FeedBurner history comparison</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/feedburner-history-comparison/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Cool FeedBurner schwag</title><link>http://yoast.com/cool-feedburner-schwag/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cool-feedburner-schwag</link> <comments>http://yoast.com/cool-feedburner-schwag/#comments</comments> <pubDate>Thu, 28 Dec 2006 19:56:52 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Webdesign & development]]></category> <category><![CDATA[Feedburner]]></category> <category><![CDATA[RSS]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/blog/cool-feedburner-schwag/</guid> <description><![CDATA[<p>I got some nice stuff in the mail today, a gift from FeedBurner's Jessica Graeser, because they liked my FeedBurner graph so much. Check it out: This makes me want to code more cool FeedBurner tools, which is probably exactly what they intended :). I've been working on a feed compare tool, which allows you [...]</p><p><a
href="http://yoast.com/cool-feedburner-schwag/">Cool FeedBurner schwag</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>I got some nice stuff in the mail today, a gift from <a
href="http://www.feedburner.com">FeedBurner</a>'s Jessica Graeser, because they liked my <a
href="http://yoast.com/code/feedburner-graph/">FeedBurner graph</a> so much. Check it out:<span
id="more-127"></span></p><p><img
src="http://cdn.yoast.com/images/feedburner-schwag.jpg" alt="FeedBurner schwag" /></p><p>This makes me want to code more cool FeedBurner tools, which is probably exactly what they intended :). I've been working on a feed compare tool, which allows you to compare the growth of 2 or 3 feeds in one graph. I'll release that soonish!</p><p><a
href="http://yoast.com/cool-feedburner-schwag/">Cool FeedBurner schwag</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/cool-feedburner-schwag/feed/</wfw:commentRss> <slash:comments>5</slash:comments> <media:thumbnail url="http://cdn.yoast.com/images/feedburner-schwag.jpg" /> <media:content url="http://cdn.yoast.com/images/feedburner-schwag.jpg" medium="image"> <media:title type="html">FeedBurner schwag</media:title> </media:content> </item> <item><title>FeedBurner down?</title><link>http://yoast.com/feedburner-down/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=feedburner-down</link> <comments>http://yoast.com/feedburner-down/#comments</comments> <pubDate>Mon, 18 Dec 2006 12:46:57 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Webdesign & development]]></category> <category><![CDATA[Feedburner]]></category> <category><![CDATA[RSS]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/blog/feedburner-down/</guid> <description><![CDATA[<p>As I logged in to my Mint stats this morning, I saw that FeedBurner had registered 0 feedreaders for both yoast.com and www.css3.info. Now I know for a fact that that isn't true, and indeed, one the support forums it seems that more people have this problem. Update: it seems this problem was solved within [...]</p><p><a
href="http://yoast.com/feedburner-down/">FeedBurner down?</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>As I logged in to my Mint stats this morning, I saw that FeedBurner had registered 0 feedreaders for both <a
target="_blank" href="http://yoast.com/">yoast.com</a> and <a
target="_blank" href="http://www.css3.info">www.css3.info</a>. Now I know for a fact that that isn't true, and indeed, one the support forums it seems that <a
target="_blank" href="http://forums.feedburner.com/viewtopic.php?p=33567">more people have this problem</a>.</p><p><strong>Update:</strong> it seems this problem was solved within 30 minutes after I blogged it, I guess this means I should blog more...</p><p><a
href="http://yoast.com/feedburner-down/">FeedBurner down?</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/feedburner-down/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>FeedBurner API fun</title><link>http://yoast.com/feedburner-api-fun/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=feedburner-api-fun</link> <comments>http://yoast.com/feedburner-api-fun/#comments</comments> <pubDate>Mon, 04 Dec 2006 08:06:49 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Webdesign & development]]></category> <category><![CDATA[Analytics]]></category> <category><![CDATA[Feedburner]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[RSS]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/blog/feedburner-api-fun/</guid> <description><![CDATA[<p>I've had some fun with the FeedBurner API in the past days, creating a graphic simulation from a blog's feed-readers history over the past year. It's rather elegant, I think, as it creates graphics which you can easily insert into your pages or posts, and will automatically update each time they're loaded. An example: Want [...]</p><p><a
href="http://yoast.com/feedburner-api-fun/">FeedBurner API fun</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>I've had some fun with the FeedBurner API in the past days, creating a graphic simulation from a blog's feed-readers history over the past year. It's rather elegant, I think, as it creates graphics which you can easily insert into your pages or posts, and will automatically update each time they're loaded.</p><p>An example:</p><p><img
src="http://yoast.com/code/feedburner-graph/?uri=joostdevalk&#038;width=450" alt="Feed circulation data for joostdevalk" /></p><p>Want such a thing for yourself? Go check it out: <a
href="http://yoast.com/code/feedburner-graph/">FeedBurner graph</a>.</p><p><a
href="http://yoast.com/feedburner-api-fun/">FeedBurner API fun</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/feedburner-api-fun/feed/</wfw:commentRss> <slash:comments>2</slash:comments> <media:thumbnail url="http://yoast.com/code/feedburner-graph/?uri=joostdevalk&amp;width=450" /> <media:content url="http://yoast.com/code/feedburner-graph/?uri=joostdevalk&amp;width=450" medium="image"> <media:title type="html">Feed circulation data for joostdevalk</media:title> </media:content> </item> <item><title>Short note: FeedBurner</title><link>http://yoast.com/short-note-feedburner/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=short-note-feedburner</link> <comments>http://yoast.com/short-note-feedburner/#comments</comments> <pubDate>Wed, 14 Jun 2006 11:54:55 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Feedburner]]></category> <category><![CDATA[RSS]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/blog/2006/06/14/short-note-feedburner/</guid> <description><![CDATA[<p>Just a short note to let you all know that I've switched the feed to a FeedBurner feed, it should work automatically, if it does not please tell me in the comments. I've switched it because FeedBurner can give some pretty cool stats on feeds, which could be useful in the future.</p><p><a
href="http://yoast.com/short-note-feedburner/">Short note: FeedBurner</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>Just a short note to let you all know that I've switched the feed to a <a
target="_blank" href="http://feeds.feedburner.com/joostdevalk">FeedBurner feed</a>, it should work automatically, if it does not please tell me in the comments. I've switched it because FeedBurner can give some pretty cool stats on feeds, which could be useful in the future.</p><p><a
href="http://yoast.com/short-note-feedburner/">Short note: FeedBurner</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/short-note-feedburner/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Database Caching 1/37 queries in 0.009 seconds using apc
Object Caching 1363/1432 objects using apc
Content Delivery Network via cdn.yoast.com

Served from: yoast.com @ 2012-02-08 22:24:41 -->
