<?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/"
	>

<channel>
	<title>Webmaster-Source &#187; feeds</title>
	<atom:link href="https://www.webmaster-source.com/tag/feeds/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webmaster-source.com</link>
	<description>Useful Resources For Webmasters</description>
	<lastBuildDate>Thu, 24 Aug 2017 02:01:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>Getting RSS and Twitter Subscriber Counts in WordPress</title>
		<link>https://www.webmaster-source.com/2009/07/22/getting-rss-and-twitter-subscriber-counts-in-wordpress/</link>
		<comments>https://www.webmaster-source.com/2009/07/22/getting-rss-and-twitter-subscriber-counts-in-wordpress/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 11:49:03 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=2387</guid>
		<description><![CDATA[I previously wrote a post about how some blogs are displaying their RSS subscriber and Twitter follower counts. Mac AppStorm is combining their Twitter and RSS counts into one number, and FreelanceSwitch has a section in their footer with separate readouts for RSS, Twitter, and their podcast. Today I&#8217;d like to show you how to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-2388 imgborder" title="Mac AppStorm Subscribe Section" src="//www.webmaster-source.com/wp-content/uploads/appstorm_subscribe_mini.jpg" alt="Mac AppStorm Subscribe Section" width="155" height="101" />I <a href="http://www.webmaster-source.com/2009/07/16/combining-rss-and-twitter-subscriber-counts/">previously wrote a post</a> about how some blogs are displaying their RSS subscriber and Twitter follower counts. <a href="http://mac.appstorm.net/">Mac AppStorm</a> is combining their Twitter and RSS counts into one number, and <a href="http://freelanceswitch.com/">FreelanceSwitch</a> has a section in their footer with separate readouts for RSS, Twitter, and their podcast. Today I&#8217;d like to show you how to actually implement such a thing.</p>
<p>We&#8217;ll be using PHP and cURL to retrieve the numbers, and then caching them in the database with WordPress&#8217;s <code>get_option()</code> and <code>update_option()</code> functions, so we don&#8217;t slow things down or use-up your Twitter API limit.<span id="more-2387"></span></p>
<p>First, here&#8217;s how you get your FeedBurner circulation as plain text:</p>
<pre class="brush: php; title: ; notranslate">
$fburl=&amp;quot;https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=Webmaster-source&amp;quot;;
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $fburl);
$data = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($data);
$fb = $xml-&amp;gt;feed-&amp;gt;entry['circulation'];
</pre>
<p>Replace <code>Webmaster-source</code> with your FeedBurner ID (the part at the end of your RSS link) and you&#8217;re all set. Now you can <code>echo</code> out the <code>$fb</code> variable to display your RSS circulation.</p>
<p>To get your Twitter follower count, you would do something similar:</p>
<pre class="brush: php; title: ; notranslate">
$twurl=&amp;quot;http://twitter.com/statuses/user_timeline.xml?id=redwall_hp&amp;amp;count=1&amp;quot;;
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $twurl);
$data = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($data);
$tw = $xml-&amp;gt;status-&amp;gt;user-&amp;gt;followers_count;
</pre>
<p>As with the FeedBurner snippet, replace <code>redwall_hp</code> with your Twitter username, and then you can just echo <code>$tw</code> to get your follower count. This snippet isn&#8217;t something you want to use as-is though. Twitter&#8217;s API limit would soon kick-in and it would quit working. It needs to be cached.</p>
<p>Now you have two code snippets that can retrieve the two statistics. Now they need to be added up into one number and cached.</p>
<p>Here&#8217;s the final function, which you can add to your WordPress theme&#8217;s <code>functions.php</code> file:</p>
<pre class="brush: php; title: ; notranslate">
function my_subscriber_count() {

$subscribers = get_option('my_subscriber_count');

if ( $subscribers['cache_time'] &amp;lt; (mktime() - 3600) ) {

$fburl=&amp;quot;https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=Webmaster-source&amp;quot;;
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $fburl);
$data = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($data);
$fb = $xml-&amp;gt;feed-&amp;gt;entry['circulation'];

$twurl=&amp;quot;http://twitter.com/statuses/user_timeline.xml?id=redwall_hp&amp;amp;count=1&amp;quot;;
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $twurl);
$data = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($data);
$tw = $xml-&amp;gt;status-&amp;gt;user-&amp;gt;followers_count;

$subscribers['count'] = $fb+$tw;
$subscribers['cache_time'] = mktime();
update_option('my_subscriber_count', $subscribers);

}

echo $subscribers['count'];

}
</pre>
<p>Once you add that mess to functions.php, you can display the combined number in plain text simply by putting the following template tag anywhere in your theme:</p>
<pre class="brush: php; title: ; notranslate">
&amp;lt;?php my_subscriber_count(); ?&amp;gt;
</pre>
<p>That wasn&#8217;t too hard, was it?</p>
<p>If you want to take the FreelanceSwitch route, with multiple counters, the code shouldn&#8217;t be too hard to adapt.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2009/07/22/getting-rss-and-twitter-subscriber-counts-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Google Responds to Criticism of FeedBurner Migration</title>
		<link>https://www.webmaster-source.com/2009/01/28/google-responds-to-criticism-of-feedburner-migration/</link>
		<comments>https://www.webmaster-source.com/2009/01/28/google-responds-to-criticism-of-feedburner-migration/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 11:57:46 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Services and Tools]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=1766</guid>
		<description><![CDATA[As you may already know, Google has set a deadline for you to migrate your feeds over to their new system tied to your Google Account. The move hasn&#8217;t been as smooth as it could have been so far, and there has been much criticism over it. I&#8217;ve certainly done my fair share of complaining. [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>As you may already know, <a href="http://www.webmaster-source.com/2009/01/25/transfer-your-feedburner-feed/">Google has set a deadline</a> for you to migrate your feeds over to their new system tied to your Google Account. The move hasn&#8217;t been as smooth as it could have been so far, and there has been much criticism over it. I&#8217;ve certainly done my fair share of complaining. (My stats were at 20% for several days, and 1and1 complains that the CNAME for MyBrand is too long.)</p>
<p>Mashable was granted an interview with Steve Olechowski, co-founder of FeedBurner turned Google employee. The Q&amp;A session ended with fifteen answers to frequently asked questions about the transition. Sadly, many of my questions have been left unanswered as of yet.</p>
<p>A very large percentage of the blogosphere uses FeedBurner to cache their feeds, so this topic is one to watch. The service fits well into their business, and should open up some interesting opportunities in the future, and quite possibly the widespread adoption of ads in RSS feeds.</p>
<p><a href="http://mashable.com/2009/01/25/googles-feedburner-criticism/">Read the full Q&amp;A at Mashable.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2009/01/28/google-responds-to-criticism-of-feedburner-migration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Transfer Your FeedBurner Feed</title>
		<link>https://www.webmaster-source.com/2009/01/25/transfer-your-feedburner-feed/</link>
		<comments>https://www.webmaster-source.com/2009/01/25/transfer-your-feedburner-feed/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 12:07:23 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Services and Tools]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=1755</guid>
		<description><![CDATA[If you remember a couple years ago, way back in the summer of 2007, Google bought the venerable feed mirror and statistics company FeedBurner. The Big G has since been slowly migrating everyone&#8217;s accounts over to their own servers, moving away from the old FeedBurner ones. Since Google&#8217;s acquisition of FeedBurner, Inc. on June 1, [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>If you remember a couple years ago, way back in the summer of 2007, Google bought the venerable feed mirror and statistics company <a href="http://feedburner.com">FeedBurner</a>. The Big G has since been slowly migrating everyone&#8217;s accounts over to their own servers, moving away from the old FeedBurner ones.</p>
<blockquote><p>Since Google&#8217;s acquisition of FeedBurner, Inc. on June 1, 2007, we have been moving the FeedBurner application to Google hardware, software, and data centers. This allows the application to scale and perform like most Google applications and integrate easily with other Google platforms. It also means more reliability in delivering your content, analytics, and monetization, as well as a more secure and consistent experience for your users.</p>
<p>In order to provide an integrated experience and to support the new features we have planned for our feed platform, as well as to improve security, it is necessary for logins to be handled via a Google Account.</p></blockquote>
<p>Google has set a deadline for you to move your feed now. You have until <strong>February 28, 2009</strong> to transfer your feeds. Pro Blog Design has <a href="http://www.problogdesign.com/general-tips/make-the-move-from-feedburner-to-google/">a tutorial</a> on how to do so.</p>
<p>Also, check out <a href="https://www.google.com/support/feedburner/bin/answer.py?answer=126303">Google&#8217;s FAQ page</a> for further information.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2009/01/25/transfer-your-feedburner-feed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FeedDemon vs. MyNT</title>
		<link>https://www.webmaster-source.com/2008/01/22/feeddemon-vs-mynt/</link>
		<comments>https://www.webmaster-source.com/2008/01/22/feeddemon-vs-mynt/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 11:55:16 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[aggregators]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[rss readers]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2008/01/22/feeddemon-vs-mynt/</guid>
		<description><![CDATA[As you probably know by now, the popular RSS reader FeedDemon is now free. The maker, NewsGator, has decided to start making money solely off their enterprise customers. So they decided to make FeedDemon available to anyone who wants it (don&#8217;t worry, it&#8217;s still in active development). I decided to take this as an opportunity [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>As you probably know by now, the popular RSS reader <a href="http://www.newsgator.com/Individuals/FeedDemon/">FeedDemon</a> is now free. The maker, NewsGator, has decided to start making money solely off their enterprise customers. So they decided to make FeedDemon available to anyone who wants it (don&#8217;t worry, it&#8217;s still in active development).</p>
<p>I decided to take this as an opportunity to compare &#8220;normal&#8221; feed readers with my own <a href="http://my.ntugo.com/">MyNT RSS reader</a>. How? I kept a record of the amount of time it took to read my RSS feeds for a total of one week (using MyNT). Next, I repeated the test with FeedDemon. Here is a chart of the results:</p>
<p><img src="http://i26.tinypic.com/156d5iq.jpg" height="411" width="500" /><span id="more-383"></span></p>
<p>Interesting, isn&#8217;t it? The red line represents FeedDemon, and the green MyNT. The dates are 1/6/08 to 1/12/08 for MyNT, and 1/13/08 to 1/19/08 for FeedDemon.</p>
<p>There are things I like about both readers. I really like being able to instantly tell whether a feed has new items in it (a feature not included in MyNT), for example. Really though, I&#8217;m not about to switch over from MyNT. I just prefer to read RSS feeds differently than most people (a byproduct of Firefox Live Bookmarks being my first feed reader). Instead, I&#8217;m going to keep improving MyNT. I plan to start work on MyNT 2.0 in the near future (read: sometime this year when I have time). Some of the features I&#8217;d like to include in MyNT 2 are</p>
<ul>
<li>categorical &#8220;folders&#8221; to organize feeds</li>
<li>a way of telling whether or not a feed has new items in it (though it would work in a different, possibly better, way than FeedDemon)</li>
<li>an easier way to find feeds that other users read (a directory of sorts)</li>
<li>&#8220;private&#8221; feeds that you must be logged-in to view</li>
<li>easier feed management</li>
</ul>
<p>I really want to release a more polished product this time around, a web app that doesn&#8217;t feel like it was thrown together in a week (it actually took over a month, working alone, but you get the idea).</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2008/01/22/feeddemon-vs-mynt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/


Served from: www.webmaster-source.com @ 2026-06-09 10:15:46 by W3 Total Cache
-->