<?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>Web Design Marquette, MI &#124; Middle Ear Media &#187; News</title>
	<atom:link href="http://middleearmedia.com/tag/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://middleearmedia.com</link>
	<description>Creative design studio &#38; web agency</description>
	<lastBuildDate>Tue, 15 May 2012 04:08:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to use FeedBurner with WordPress</title>
		<link>http://middleearmedia.com/how-to-use-feedburner-with-wordpress/</link>
		<comments>http://middleearmedia.com/how-to-use-feedburner-with-wordpress/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 18:52:38 +0000</pubDate>
		<dc:creator>Obadiah</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[google rss]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[news reader]]></category>
		<category><![CDATA[reader]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[rss feed]]></category>
		<category><![CDATA[rss feed reader]]></category>
		<category><![CDATA[rss feed service]]></category>
		<category><![CDATA[rss feeds]]></category>
		<category><![CDATA[rss reader]]></category>
		<category><![CDATA[rss service]]></category>

		<guid isPermaLink="false">http://middleearmedia.com/?p=2411</guid>
		<description><![CDATA[<p><p><h1><a href="http://middleearmedia.com/how-to-use-feedburner-with-wordpress/">How to use FeedBurner with WordPress</a></h1>
</p><p>Find out how to use FeedBurner with WordPress. If you have a blog, you&#8217;re probably familiar with the concept of feeds. If you&#8217;re not sure what a feed is, read my article about RSS feeds. Feeds are a great way &#8230; <span class="continue-reading"><a class="" href="http://middleearmedia.com/how-to-use-feedburner-with-wordpress/">Read more <span class="meta-nav">&#8594;</span></a></span></p></p><p><h3><a href="http://middleearmedia.com">Web Design Marquette, MI | Middle Ear Media - Creative design studio &amp; web agency</a></h3></p>]]></description>
			<content:encoded><![CDATA[<p><h1><a href="http://middleearmedia.com/how-to-use-feedburner-with-wordpress/">How to use FeedBurner with WordPress</a></h1>
</p><p>Find out  how to use FeedBurner with WordPress. If you have a blog, you&#8217;re probably familiar with the concept of feeds. If you&#8217;re not sure what a feed is, read my article about <a href="http://middleearmedia.com/rss-feeds-explained/" title="RSS Feeds Explained">RSS feeds</a>. Feeds are a great way to share content. However, there are some limitations. There&#8217;s really no way to know any stats on subscribers. How can it be done? FeedBurner, now owned by Google, is a popular syndication service that makes it easy to receive content updates in news readers. Though it is free, you get what you pay for in support.</p>
<p><img src="http://middleearmedia.com/Assets/images/feedburner.jpg" alt="FeedBurner" title="FeedBurner" class="post-image" /><br />
<span id="more-2411"></span></p>
<h2>Benefits of using FeedBurner</h2>
<p>Okay, so you have a self-hosted WordPress site with a feed. Do you know how many subscribers your feed has? No. There&#8217;s no way to tell if anyone is subscribed or not. FeedBurner allows publishers who already have a feed to improve their understanding of and relationship with their audience by offering customization and feed management tools. These tools allow you to see exactly how many subscribers you have. Now you have another way to gauge which part of your site&#8217;s content is most relevant to your readers. </p>
<p>Aside from statistics, FeedBurner also provides many options for feed optimization, and feed publication. </p>
<h2>FeedBurner with WordPress</h2>
<p>One thing to keep in mind when using FeedBurner with WordPress is that you must make sure to unify your feed. In order for everyone to receive the same feed, your old feed must be redirected to the new. There are three ways to do this. </p>
<h3>1. Edit .htaccess</h3>
<p>You can add the redirects to the .htaccess file on your server if you&#8217;re comfortable editing important system files. Make sure to backup .htaccess in case anything goes wrong. Here is an example of code you can use to redirect your main feed as well as your comments feed.</p>
<pre>
<code># Redirect RSS feeds to FeedBurner
<IfModule mod_rewrite.c>
 RewriteEngine on
 RewriteCond %{REQUEST_URI}      ^/?(feed.*|comments.*)        [NC]
 RewriteCond %{HTTP_USER_AGENT} !^.*(FeedBurner|FeedValidator) [NC]
 RewriteRule ^feed/?.*$          http://feeds.feedburner.com/YourFeedName         [L,NC,R=302]
 RewriteRule ^comments/?.*$      http://feeds.feedburner.com/YourFeedName-Comments [L,NC,R=302]
</IfModule></code>
</pre>
<p>Make sure to change &#8220;YourFeedName&#8221; to the actual name of your feed. </p>
<h3>2. Edit functions.php</h3>
<p>Or, you could customize your theme&#8217;s functions.php file. The following code redirects your main feed. It can be placed in functions.php anywhere after the initial php tag as long as it&#8217;s not inside another function.</p>
<pre>
<code>// Redirect RSS feed to FeedBurner //
function rss_feed_redirect() {
    global $feed;
    $new_feed = 'http://feeds.feedburner.com/YourFeedName';
    if (!is_feed()) {
            return;
    }
    if (preg_match('/feedburner/i', $_SERVER['HTTP_USER_AGENT'])){
            return;
    }
    if ($feed != 'comments-rss2') {
            if (function_exists('status_header')) status_header( 302 );
            header("Location:" . $new_feed);
            header("HTTP/1.1 302 Temporary Redirect");
            exit();
    }
}
add_action('template_redirect', 'rss_feed_redirect');</code>
</pre>
<p>Again, make sure to change &#8220;YourFeedName&#8221; to the actual name of your feed. </p>
<h3>3. Use a Plugin</h3>
<p>If you&#8217;d like a simpler solution, let a plugin do the heavy lifting for you. There are many WordPress Plugins to choose from, but here are a few of the most popular.</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/feedburner-plugin/" title="FD FeedBurner Plugin">FD Feedburner</a></li>
<li><a href="http://support.google.com/feedburner/bin/answer.py?hl=en&#038;answer=78483" title="FeedBurner FeedSmith">FeedBurner FeedSmith</a></li>
<li><a href="http://wordpress.org/extend/plugins/feedburner-setting/" title="FeedBurner FeedSmith Extend">FeedBurner FeedSmith Extend</a></li>
</ul>
<h2>How to Notify Your Readers</h2>
<p>As far as I can tell, when switching from a native WordPress feed to a FeedBurner feed, your current subscribers will have to re-subscribe to the new feed. So, it&#8217;s a great idea to make a post that informs them about the upcoming feed switch before you actually change them. That way, they will know why your feed isn&#8217;t updated anymore. Furthermore, they&#8217;ll have a link to the new feed. </p>
<p>This solution is far from perfect, but it should make it easier for them to subscribe to your new feed. If anyone knows how to avoid this problem, or if it&#8217;s even possible, please add a comment below. Thanks.</p>
<h2>Subscribe to my Feeds:</h2>
<p><a href="http://middleearmedia.com/feed">Middle Ear Media Article Feed</a> via RSS</p>
<p><a href="http://middleearmedia.com/comments/feed">Middle Ear Media Comment Feed</a> via RSS</p>
<p><a href="http://feedburner.google.com/fb/a/mailverify?uri=MiddleEarMedia&amp;loc=en_US">Middle Ear Media Article Feed</a> via Email</p>
<p class="call-to-action-link">Check out <a href="http://feedburner.com">FeedBurner</a></p>
<p><h3><a href="http://middleearmedia.com">Web Design Marquette, MI | Middle Ear Media - Creative design studio &amp; web agency</a></h3></p>]]></content:encoded>
			<wfw:commentRss>http://middleearmedia.com/how-to-use-feedburner-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RSS Feeds Explained</title>
		<link>http://middleearmedia.com/rss-feeds-explained/</link>
		<comments>http://middleearmedia.com/rss-feeds-explained/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 19:25:48 +0000</pubDate>
		<dc:creator>Obadiah</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Content Delivery]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[feed reader]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[news aggregator]]></category>
		<category><![CDATA[news reader]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[SMS Text]]></category>
		<category><![CDATA[subscribe]]></category>
		<category><![CDATA[Syndication]]></category>
		<category><![CDATA[Thunderbird]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.middleearmedia.com/?p=176</guid>
		<description><![CDATA[<p><p><h1><a href="http://middleearmedia.com/rss-feeds-explained/">RSS Feeds Explained</a></h1>
</p><p>Have you ever noticed the sheer amount of information on the internet? It&#8217;s become overwhelming and guess what? It&#8217;s only going to grow! So content publishers need to find ways to make it easier for their audience to receive their &#8230; <span class="continue-reading"><a class="" href="http://middleearmedia.com/rss-feeds-explained/">Read more <span class="meta-nav">&#8594;</span></a></span></p></p><p><h3><a href="http://middleearmedia.com">Web Design Marquette, MI | Middle Ear Media - Creative design studio &amp; web agency</a></h3></p>]]></description>
			<content:encoded><![CDATA[<p><h1><a href="http://middleearmedia.com/rss-feeds-explained/">RSS Feeds Explained</a></h1>
</p><p>Have you ever noticed the sheer amount of information on the internet? It&#8217;s become overwhelming and guess what? It&#8217;s only going to grow! So content publishers need to find ways to make it easier for their audience to receive their content.</p>
<p>The concept behind <acronym title="Really Simple Syndication">RSS</acronym> is really simple. So simple in fact that RSS stands for Really Simple Syndication. RSS is one of the most popular formats used to distribute content on the internet. Also known as a Web Feed, it is a great way to get your content out to the masses if you have a blog, news site, or really any website with content that is updated frequently. </p>
<p><img src="http://middleearmedia.com/Assets/images/rss-feeds.jpg" alt="Various RSS Feed Icons" title="Various RSS Feed Icons" class="post-image"/><br />
<span id="more-176"></span><br />
You have probably seen RSS Feed icons before, even if you didn&#8217;t know what they were. There is a (sort of) standard RSS icon that looks like an orange square with some white curved lines inside it. However, many designers want their feed icon to match the look of their site so they customize it. There is no limit to how creative these icons can be, but at the end of the day they must fulfill their function of letting your readers know they can subscribe to your content.</p>
<p>So, how do you subscribe to a feed? First, you&#8217;ll need a news reader (also known as a feed reader or news aggregator). Some news readers are web-based such as Live Bookmarks, Yahoo, News Gator, Bloglines, Netvibes, Google, Pageflakes, FeedDemon, RSSOwl, NetNewsWire, NewsFire, Shrook, etc. Others are located on your own computer. Many Email clients such as Mozilla&#8217;s Thunderbird, and Microsoft&#8217;s Outlook or Outlook Express also function as news readers. I prefer Thunderbird, but that&#8217;s just me. </p>
<p><img src="http://middleearmedia.com/Assets/images/feed-reader.jpg" alt="Using Thunderbird as your feed reader" title="Using Thunderbird as your feed reader" class="post-image"/></p>
<p>Once you have a feed reader, go to the website you want to subscribe to and simply click on the RSS or feed icon. Then copy the URL from the address bar at the top of your browser. It will probably look something like </p>
<p>http://www.middleearmedia.com/feed/</p>
<p>but not necessarily. Alternatively, you can right click the RSS or feed icon and select &#8220;Copy Shortcut&#8221; or &#8220;Copy Link Location&#8221; to copy the address of the feed. Go to your news reader and find the option that lets you add content or feeds. This should open up a window with a field to add the URL of the feed you want to subscribe to. Place your cursor in this field and right click your mouse then select Paste. </p>
<p>In Thunderbird for example, click News &#038; Blogs, then click Manage subscriptions, click the Add button in the window that pops up, and paste the address into the Feed URL field.</p>
<p>RSS is not the only kid on the content-syndication block. There are other ways to deliver content such as Atom, Email, SMS Text, and most recently services such as Twitter have been getting in on the action.</p>
<p><h3><a href="http://middleearmedia.com">Web Design Marquette, MI | Middle Ear Media - Creative design studio &amp; web agency</a></h3></p>]]></content:encoded>
			<wfw:commentRss>http://middleearmedia.com/rss-feeds-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

