<?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>Exploring The Internet &#187; a RSS plugin</title>
	<atom:link href="http://www.learningwp.com/tag/a-rss-plugin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.learningwp.com</link>
	<description>Exploring the web - Growing my experience toward my online business</description>
	<lastBuildDate>Fri, 11 Jun 2010 00:01:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Monetize Your Blog With a RSS Plugin?</title>
		<link>http://www.learningwp.com/monetize-your-blog-with-a-rss-plugin.html</link>
		<comments>http://www.learningwp.com/monetize-your-blog-with-a-rss-plugin.html#comments</comments>
		<pubDate>Mon, 19 Jan 2009 03:07:04 +0000</pubDate>
		<dc:creator>Lanna</dc:creator>
				<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[ClickBank]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[WordPress Tips]]></category>
		<category><![CDATA[a RSS plugin]]></category>
		<category><![CDATA[ClickBank products]]></category>
		<category><![CDATA[eBay products]]></category>
		<category><![CDATA[FirstRSS]]></category>
		<category><![CDATA[WordPress blog]]></category>

		<guid isPermaLink="false">http://www.learningwp.com/?p=322</guid>
		<description><![CDATA[Updated on 2/19/10: For some reason the website of firstRSS plugin is no longer available.









I recently found a very useful RSS plugin that will allow you to monetize your blog with it. It will permit you to place  RSS feeds below each of your articles. With it you can now promote eBay&#8217;s products, ClickBank products, and any [...]]]></description>
			<content:encoded><![CDATA[<p>Updated on 2/19/10: For some reason the website of firstRSS plugin is no longer available.
<!-- Begin Google Adsense code -->
<div style="display: block; float: left; padding: 5px 10px 10px 0;">
<script type="text/javascript"><!--
google_ad_client = "pub-4932554700716308";
/* 336x280, created 12/24/07 */
google_ad_slot = "2510575724";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<!-- End Google Adsense code -->
</p>
<p>I recently found a very useful <em>RSS</em> plugin that will allow you to monetize your blog with it. It will permit you to place  <em>RSS</em> feeds below each of your articles. With it you can now promote <a title="Travel Deals on EBay" href="http://www.airlineticketswithus.com" target="_blank">eBay&#8217;s products</a>, <a title="List of ClickBank Products" href="http://www.internetoutput.com/list-of-clickbank-products.html" target="_blank">ClickBank products</a>, and any other affiliate products that allow you to generate <em>RSS</em> feeds with. I am so excited that I want to share this great tool with you.</p>
<p>This simple <em>RSS</em> plugin is called <em>FirstRSS</em>. Download it from its owner&#8217;s website. Did I mention that it is <em>Free</em>? After that unzip that file and upload it to your blog&#8217;s directory like this: <span style="color: #ff0000;">/public_html/wp-content/plugins/</span>. (assuming that you are using self-hosted <em>WordPress</em> blog too).</p>
<p>One drawback that I found out so far is you can only be allowed to show its default feeds which is 10. I don&#8217;t know about you but I think 10 feeds for an article is too many. I want to show less than 5 feeds or at most 5 feeds. Here is the solution for that:</p>
<ul>
<li>Log in to your <em>WordPress</em> admin erea.</li>
</ul>
<ul>
<li>Click on <em>Plugins</em>/<em>FirstRSS</em>/<em>Edit</em>.</li>
</ul>
<ul>
<li>Before you attempt to make any changes, make sure you save a copy of it.</li>
</ul>
<ul>
<li>Find the following codes in firstRSS.php: <br />
<table style="height: 21px;" border="1" cellspacing="0" width="440">
<tbody>
<tr>
<td style="background-color: #e5ecfa; width: 440px;">
<p style="margin: 5pt 15pt; text-align: justify;">foreach($rss-&gt;items as $item) {<br />
$title = $item[title];<br />
$link = htmlentities($item[link]);<br />
$desc = $item[description];<br />
if ($title != &#8221;) $disp .= &#8220;\t&lt;b&gt;&lt;a href=&#8217;$link&#8217;&gt;$title&lt;/a&gt;&lt;/b&gt;\n&lt;br /&gt;&#8221;;<br />
if ($desc  != &#8221;) $disp .= &#8220;\t$desc\n&lt;br /&gt;&#8221;;<br />
}</p>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
<ul>
<li>And replace them with the codes below: <br />
<table style="height: 21px;" border="1" cellspacing="0" width="440">
<tbody>
<tr>
<td style="background-color: #e5ecfa; width: 440px;">
<p style="margin: 5pt 15pt; text-align: justify;">$i=0;<br />
foreach($rss-&gt;items as $item) {<br />
if($i &lt; 5) {<br />
$title = $item[title];<br />
$link = htmlentities($item[link]);<br />
$desc = $item[description];<br />
if ($title != &#8221;) $disp .= &#8220;\t&lt;b&gt;&lt;a href=&#8217;$link&#8217;&gt;$title&lt;/a&gt;&lt;/b&gt;\n&lt;br /&gt;&#8221;;<br />
if ($desc != &#8221;) $disp .= &#8220;\t$desc\n&lt;br /&gt;&#8221;;<br />
}<br />
$i++;<br />
}</p>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
<p>This will allow you to control how many <em>RSS</em> feeds you&#8217;ve preferred. I like to display [rsspara:URL] instead of [rsslist:URL] below my post because [rsspara:URL] will allow me to show not only links but images and descriptions of the products as well. Make sure you get a <em>RSS</em> url from any affiliate site you&#8217;ve participated and replace the <em>URL</em> with the feed&#8217;s url that you&#8217;ve got. If you&#8217;ve done it right, you will see an example just like the one below.</p>
<p>Another drawback is that it shows what category and keywords with a logo in its feeds. I don&#8217;t like that. I am still searching an answer for it. I&#8217;ll keep you posted once I find the solution.</p>
<p>Update: The solution for the above question is shown below. You need to find the following three <span style="color: #ff0000;">$disp code lines</span> and comment them out. Make sure you save the file:</p>
<table style="height: 21px;" border="1" cellspacing="0" width="440">
<tbody>
<tr>
<td style="background-color: #e5ecfa; width: 440px;">
<p style="TEXT-ALIGN: justify; MARGIN: 5pt 15pt"><span style="color: #ff0000;">$disp .= &#8220;\t&lt;a href=&#8217;$link&#8217;&gt;&lt;img src=&#8217;$url&#8217; alt=&#8217;$title&#8217; /&gt;&lt;/a&gt;&lt;br /&gt;\n&#8221;;</span></p>
<p style="text-align: justify; margin: 5pt 15pt;"><span style="color: #0000ff;">$disp .= &#8220;\t&lt;big&gt;&lt;a href=&#8217;$link&#8217;&gt;$title&lt;/a&gt;&lt;/big&gt;&lt;br /&gt;\n&#8221;;</span> </p>
<p style="text-align: justify; margin: 5pt 15pt;"><span style="color: #ff00ff;">$disp .= &#8220;\n\t&lt;br /&gt;\n&#8221;;</span></p>
</td>
</tr>
</tbody>
</table>
<p> <br />
Now go ahead to test it out. Does it work? Mine is working. See the example below.</p>
<p>
<!-- FirstRSS -->
	<b><a href='http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=2&amp;toolid=10005&amp;campid=5336190399&amp;customid=&amp;icep_item=150441275014&amp;ipn=psmain&amp;icep_vectorid=238401&amp;kwid=902099&amp;mtid=824&amp;kw=rss'>Sams Teach Yourself WordPress in 10 Minutes NEW</a></b>
<br />	<table border="0" cellpadding="8"><tr><td><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=2&toolid=10005&campid=5336190399&customid=&icep_item=150441275014&ipn=psmain&icep_vectorid=238401&kwid=902099&mtid=824&kw=rss"><img border="0" src="http://thumbs.ebaystatic.com/pict/150441275014_0.jpg"></a></td><td><strong>US $22.32</strong><br /> End Date: Thursday Aug-05-2010 3:10:51 PDT<br />Buy It Now for only: US $22.32<br /><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=2&toolid=10005&campid=5336190399&customid=&icep_item=150441275014&ipn=psmain&icep_vectorid=238401&kwid=902099&mtid=824&kw=rss">Buy it now</a> | <a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&toolid=10005&campid=5336190399&customid=&mpre=http%3A%2F%2Fcgi1.ebay.com%2Fws%2FeBayISAPI.dll%3FMfcISAPICommand%3DMakeTrack%26item%3D150441275014%26ssPageName%3DRSS%3AB%3ASRCH%3AUS%3A104">Add to watch list</a></td></tr></table>
<br />	<b><a href='http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=2&amp;toolid=10005&amp;campid=5336190399&amp;customid=&amp;icep_item=160461885784&amp;ipn=psmain&amp;icep_vectorid=238401&amp;kwid=902099&amp;mtid=824&amp;kw=rss'>Songwriting for Dummies NEW by Dave Austin</a></b>
<br />	<table border="0" cellpadding="8"><tr><td><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=2&toolid=10005&campid=5336190399&customid=&icep_item=160461885784&ipn=psmain&icep_vectorid=238401&kwid=902099&mtid=824&kw=rss"><img border="0" src="http://thumbs.ebaystatic.com/pict/160461885784_0.jpg"></a></td><td><strong>US $27.23</strong><br /> End Date: Friday Aug-27-2010 18:15:38 PDT<br />Buy It Now for only: US $27.23<br /><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=2&toolid=10005&campid=5336190399&customid=&icep_item=160461885784&ipn=psmain&icep_vectorid=238401&kwid=902099&mtid=824&kw=rss">Buy it now</a> | <a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&toolid=10005&campid=5336190399&customid=&mpre=http%3A%2F%2Fcgi1.ebay.com%2Fws%2FeBayISAPI.dll%3FMfcISAPICommand%3DMakeTrack%26item%3D160461885784%26ssPageName%3DRSS%3AB%3ASRCH%3AUS%3A104">Add to watch list</a></td></tr></table>
<br /></p>

<p align='center'><small> <a href='http://www.underjc.com/2007/10/firstrss-plugin-for-wordpress.html' title='UnderJC.com'></a></small></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html&amp;title=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F&amp;bodytext=Updated%20on%C2%A02%2F19%2F10%3A%20For%20some%20reason%20the%20website%20of%C2%A0firstRSS%20plugin%20is%20no%20longer%20available.%0D%0A%0D%0AI%20recently%20found%20a%20very%20useful%20RSS%20plugin%20that%20will%20allow%20you%20to%20monetize%20your%20blog%20with%20it.%20It%20will%20permit%20you%20to%20place%C2%A0%20RSS%20feeds%20below%20each%20of%20your%20ar" title="Digg"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html&amp;title=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F&amp;notes=Updated%20on%C2%A02%2F19%2F10%3A%20For%20some%20reason%20the%20website%20of%C2%A0firstRSS%20plugin%20is%20no%20longer%20available.%0D%0A%0D%0AI%20recently%20found%20a%20very%20useful%20RSS%20plugin%20that%20will%20allow%20you%20to%20monetize%20your%20blog%20with%20it.%20It%20will%20permit%20you%20to%20place%C2%A0%20RSS%20feeds%20below%20each%20of%20your%20ar" title="del.icio.us"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html&amp;t=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F" title="Facebook"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html&amp;h=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F" title="NewsVine"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html&amp;title=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F" title="Reddit"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html&amp;title=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F" title="StumbleUpon"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html&amp;title=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F&amp;annotation=Updated%20on%C2%A02%2F19%2F10%3A%20For%20some%20reason%20the%20website%20of%C2%A0firstRSS%20plugin%20is%20no%20longer%20available.%0D%0A%0D%0AI%20recently%20found%20a%20very%20useful%20RSS%20plugin%20that%20will%20allow%20you%20to%20monetize%20your%20blog%20with%20it.%20It%20will%20permit%20you%20to%20place%C2%A0%20RSS%20feeds%20below%20each%20of%20your%20ar" title="Google Bookmarks"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html&amp;submitHeadline=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F&amp;submitSummary=Updated%20on%C2%A02%2F19%2F10%3A%20For%20some%20reason%20the%20website%20of%C2%A0firstRSS%20plugin%20is%20no%20longer%20available.%0D%0A%0D%0AI%20recently%20found%20a%20very%20useful%20RSS%20plugin%20that%20will%20allow%20you%20to%20monetize%20your%20blog%20with%20it.%20It%20will%20permit%20you%20to%20place%C2%A0%20RSS%20feeds%20below%20each%20of%20your%20ar&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F%20-%20http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html" title="Twitter"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html" title="Technorati"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html&amp;title=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F" title="Live"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html&amp;title=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F&amp;source=Exploring+The+Internet+Exploring+the+web+-+Growing+my+experience+toward+my+online+business&amp;summary=Updated%20on%C2%A02%2F19%2F10%3A%20For%20some%20reason%20the%20website%20of%C2%A0firstRSS%20plugin%20is%20no%20longer%20available.%0D%0A%0D%0AI%20recently%20found%20a%20very%20useful%20RSS%20plugin%20that%20will%20allow%20you%20to%20monetize%20your%20blog%20with%20it.%20It%20will%20permit%20you%20to%20place%C2%A0%20RSS%20feeds%20below%20each%20of%20your%20ar" title="LinkedIn"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.learningwp.com%2Fmonetize-your-blog-with-a-rss-plugin.html&amp;t=Monetize%20Your%20Blog%20With%20a%20Exploring+The+Internet%20Plugin%3F" title="MySpace"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.learningwp.com/monetize-your-blog-with-a-rss-plugin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
