<?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>Keep Walking &#187; Money Blogging</title>
	<atom:link href="http://www.aowaa.com/tag/money-blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aowaa.com</link>
	<description>Free Wordpress Themes, Make Money Online and Coolest Gadgets</description>
	<lastBuildDate>Thu, 03 Dec 2009 05:25:42 +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>How to Add Advertisement Between Posts in Wordpress</title>
		<link>http://www.aowaa.com/how-to-add-advertisement-between-posts-in-wordpress/</link>
		<comments>http://www.aowaa.com/how-to-add-advertisement-between-posts-in-wordpress/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 03:05:54 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Advertisement]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Money Blogging]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.aowaa.com/?p=223</guid>
		<description><![CDATA[The advertisement is the best and easiest way for money blogging. Most of us like to put the advertisement in the sidebar and in the post. As we know the more advertisement you show the more earning you get. So we should think about how to increase advertisements friendly and effectively.
The bottom of the first [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>advertisement</strong> is the best and easiest way for <a href="http://www.aowaa.com/how-to-start-your-money-blogging/" target="_self">money blogging</a>. Most of us like to put the advertisement in the sidebar and in the post. As we know the more <a href="http://www.aowaa.com/tag/advertisement/" target="_self">advertisement</a> you show the more earning you get. So we should think about how to increase advertisements friendly and effectively.</p>
<p>The bottom of the first post in your home page is a good position for <strong>advertisements</strong>. The readers will take note of what is it at the bottom of the first post. If there is a size of 468X60 ads, it will be blended in your blog perfectly.</p>
<div id="attachment_301" class="wp-caption aligncenter" style="width: 507px"><a href="http://www.aowaa.com/wp-content/uploads/2009/11/post-bottom-ads.JPG"><img class="size-full wp-image-301 " title="post-bottom-ads" src="http://www.aowaa.com/wp-content/uploads/2009/11/post-bottom-ads.JPG" alt="post-bottom-ads" width="497" height="132" /></a><p class="wp-caption-text">The advertisement in the bottom of first post in home page</p></div>
<p><span id="more-223"></span>If you want add the great ads in the home page, you can get start from the <code>index.php</code> file of your <a href="http://www.aowaa.com/tag/theme/" target="_self">wordpress theme</a>. Find the statement of:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:Consolas,Monaco,"Courier New",Courier,monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span> have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Add this code before that statement, and it should be like this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:Consolas,Monaco,"Courier New",Courier,monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$postcount</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'1'</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span> have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>And then find the statement of  <code>&lt;?php endwhile; ?&gt;</code>, and add the post count code before, when you finish it will look like this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:Consolas,Monaco,"Courier New",Courier,monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$postcount</span> <span style="color: #339933;">++;</span>endwhile<span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Now you can add the advertisement between the while and endwhile function, using same format like the below code, you can change the number to change how many post with advertisements.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:Consolas,Monaco,"Courier New",Courier,monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$postcount</span><span style="color: #339933;">&lt;=</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;!--  your ad code --&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<hr />
<p><small>© Alex for <a href="http://www.aowaa.com">Keep Walking</a>, 2009. |
<a href="http://www.aowaa.com/how-to-add-advertisement-between-posts-in-wordpress/">Permalink</a> |
<a href="http://www.aowaa.com/how-to-add-advertisement-between-posts-in-wordpress/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.aowaa.com/how-to-add-advertisement-between-posts-in-wordpress/&title=How to Add Advertisement Between Posts in Wordpress">del.icio.us</a>
<br/>
Post tags: <a href="http://www.aowaa.com/tag/advertisement/" rel="tag">Advertisement</a>, <a href="http://www.aowaa.com/tag/hacks/" rel="tag">Hacks</a>, <a href="http://www.aowaa.com/tag/money-blogging/" rel="tag">Money Blogging</a>, <a href="http://www.aowaa.com/tag/tutorial/" rel="tag">Tutorial</a><br/>
</small></p>
	<h3>Related posts: </h3>
	<ul class="st-related-posts">
	<li><a href="http://www.aowaa.com/how-to-start-your-money-blogging/" title="How To Start Your Money Blogging (March 4, 2009)">How To Start Your Money Blogging</a> (3)</li>
	<li><a href="http://www.aowaa.com/how-to-get-thumbnail-automatically-from-wordpress-posts/" title="How to Get Thumbnail Automatically from Wordpress Posts (April 24, 2009)">How to Get Thumbnail Automatically from Wordpress Posts</a> (4)</li>
	<li><a href="http://www.aowaa.com/create-archives-page-without-any-plugin-wordpress/" title="How to Create Archives Page without Any Plugin in Wordpress (September 2, 2009)">How to Create Archives Page without Any Plugin in Wordpress</a> (2)</li>
	<li><a href="http://www.aowaa.com/how-to-add-spam-and-delete-action-links-to-wordpress-comments/" title="How to Add Spam and Delete Action Links to Wordpress Comments (August 6, 2009)">How to Add Spam and Delete Action Links to Wordpress Comments</a> (0)</li>
	<li><a href="http://www.aowaa.com/how-to-add-colorful-tag-cloud-without-any-plugin-in-wordpress/" title="How to Add Colorful Tag Cloud without Any Plugin in Wordpress (August 20, 2009)">How to Add Colorful Tag Cloud without Any Plugin in Wordpress</a> (4)</li>
	<li><a href="http://www.aowaa.com/let-your-blog-snow-in-christmas-day/" title="Let Your Blog Snow in Christmas Day (December 17, 2008)">Let Your Blog Snow in Christmas Day</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.aowaa.com/how-to-add-advertisement-between-posts-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Start Your Money Blogging</title>
		<link>http://www.aowaa.com/how-to-start-your-money-blogging/</link>
		<comments>http://www.aowaa.com/how-to-start-your-money-blogging/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 03:51:28 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Advertisement]]></category>
		<category><![CDATA[Money Blogging]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.aowaa.com/?p=145</guid>
		<description><![CDATA[As the previous post said, you must know how much your blog worth before start money blogging. From the parameter of calculating your blog , you can choice which is the best way for you to make money online. First and last, there are four ways to make money blogging, and you can do this [...]]]></description>
			<content:encoded><![CDATA[<p>As the previous post said, you must know <a href="http://www.aowaa.com/4-ways-to-compute-how-much-your-blog-worth/" target="_self">how much your blog worth</a> before start money blogging. From the parameter of calculating your blog , you can choice which is the best way for you to make money online. First and last, there are four ways to make <a href="http://www.aowaa.com/tag/money-blogging/" target="_self">money blogging</a>, and you can do this at the same time.</p>
<p><img class="alignnone size-full wp-image-152" title="money-blogging" src="http://www.aowaa.com/wp-content/uploads/2009/02/money-blogging.jpg" alt="money-blogging" width="347" height="346" /></p>
<h4>1. Advertisement and Sponsor</h4>
<ul>
<li>Google Adsense</li>
<li>ADToll [<a href="http://www.adtoll.com/?ref=6119" target="_blank">Register</a>]</li>
<li>Performancing Ads [<a href="http://performancingads.com/learn/advertisers?origin=1953" target="_blank">Register</a>]</li>
</ul>
<p><img class="alignnone size-full wp-image-163" title="ads" src="http://www.aowaa.com/wp-content/uploads/2009/03/ads.jpg" alt="ads" width="470" height="200" /></p>
<p><span id="more-145"></span>Advertisement maybe the easily and usual way to make money. All the things you should do just register the Publisher Account, and put the AD code into you blog. After that, you just wait and get your money when somebody chick your ADs. Of course, you can sale your ADs monthly or weekly, and get a moderate income every month or every week.</p>
<p>How much you can earn from Advertisement depend on your site traffic. If you don’t have the high traffic, maybe that’s a hard for your money blogging. So you should try the other ways.</p>
<h4>2. Write paid reviews</h4>
<ul>
<li>Sponsored Reviews [<a href="http://www.sponsoredreviews.com/index.asp?PageAction=NewAccount&amp;aid=22648" target="_blank">Register</a>]</li>
<li>Review Me</li>
<li>Blogsvertise [<a href="http://www.blogsvertise.com/?rid=b23497" target="_blank">Register</a>]</li>
<li>Paying Post [<a href="http://www.payingpost.com/?xyz=300" target="_blank">Register</a>]</li>
<li>Pay per post</li>
</ul>
<p><img class="alignnone size-full wp-image-164" title="reviews" src="http://www.aowaa.com/wp-content/uploads/2009/03/reviews.jpg" alt="reviews" width="546" height="270" /></p>
<p>There are companies want to hire somebody to review their products for the promotion, that was the Marketing Topics. You can find the XXX form the above-mentioned list after your get the Publisher Account. Finish the topics on time, and then get your paid.</p>
<p>How much you earn depend on the Alexa Rank, back links or other information of your blog. So it’s importance that built a good blog before make the money blogging.</p>
<h4>3. Sale text link ADs</h4>
<ul>
<li>Text Link Ads [<a href="http://www.inlinks.com/?ref=158522" target="_blank">Register</a>]</li>
<li>Back links [<a href="http://www.backlinks.com/aff/27583" target="_blank">Register</a>]</li>
<li>Link Worth [<a href="http://www.linkworth.com/?a=12256" target="_blank">Register</a>]</li>
</ul>
<p><img class="alignnone size-full wp-image-162" title="txas" src="http://www.aowaa.com/wp-content/uploads/2009/03/txas.jpg" alt="txas" width="416" height="156" /></p>
<p>Text links ad sell is another easy way to make money, some great bloggers can earn more than $1000/month from text link ads. The prices of your ads depend on the Google Page Rank and Alexa Rank of you website. You just put the text links in your website after somebody have paid. Though it’s a easy ways to earn, you should remember don’t sale text links about Grambling and Eroticism, and it will make your website be punished by Google and other<a href="http://www.aowaa.com/tag/search-engines/" target="_self"> search engines</a>.</p>
<p>Google allow you to sale the text links which is related to your website or using the “no follow” label. So to be honest when your are making money blogging is very important.</p>
<h4>4. Affiliate</h4>
<p>Affiliate is something just like Advertisement, but it’s different between them. Many blog marketing website have the affiliate system. If you bring some numbers to this blog marketing website, when they consume or earn a certain amount of money, you can get your paid.</p>
<p>So if you want to start money blogging, you can click register link to join the blog marketing website listed upwards. After you get the first bucket of gold, I can get my paid.</p>
<hr />
<p><small>© Alex for <a href="http://www.aowaa.com">Keep Walking</a>, 2009. |
<a href="http://www.aowaa.com/how-to-start-your-money-blogging/">Permalink</a> |
<a href="http://www.aowaa.com/how-to-start-your-money-blogging/#comments">3 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.aowaa.com/how-to-start-your-money-blogging/&title=How To Start Your Money Blogging">del.icio.us</a>
<br/>
Post tags: <a href="http://www.aowaa.com/tag/advertisement/" rel="tag">Advertisement</a>, <a href="http://www.aowaa.com/tag/blogging/" rel="tag">Blogging</a>, <a href="http://www.aowaa.com/tag/money-blogging/" rel="tag">Money Blogging</a>, <a href="http://www.aowaa.com/tag/tutorial/" rel="tag">Tutorial</a><br/>
</small></p>
	<h3>Related posts: </h3>
	<ul class="st-related-posts">
	<li><a href="http://www.aowaa.com/how-to-add-advertisement-between-posts-in-wordpress/" title="How to Add Advertisement Between Posts in Wordpress (November 13, 2009)">How to Add Advertisement Between Posts in Wordpress</a> (0)</li>
	<li><a href="http://www.aowaa.com/4-ways-to-compute-how-much-your-blog-worth/" title="4 Ways To Compute How Much Your Blog Worth (February 25, 2009)">4 Ways To Compute How Much Your Blog Worth</a> (2)</li>
	<li><a href="http://www.aowaa.com/what-can-we-do-if-we-have-a-blog/" title="What can we do if we have a Blog? (September 29, 2008)">What can we do if we have a Blog?</a> (4)</li>
	<li><a href="http://www.aowaa.com/let-your-blog-snow-in-christmas-day/" title="Let Your Blog Snow in Christmas Day (December 17, 2008)">Let Your Blog Snow in Christmas Day</a> (0)</li>
	<li><a href="http://www.aowaa.com/how-to-seo-your-wordpress-theme/" title="How to SEO Your Wordpress Theme (December 18, 2008)">How to SEO Your Wordpress Theme</a> (4)</li>
	<li><a href="http://www.aowaa.com/how-to-get-thumbnail-automatically-from-wordpress-posts/" title="How to Get Thumbnail Automatically from Wordpress Posts (April 24, 2009)">How to Get Thumbnail Automatically from Wordpress Posts</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.aowaa.com/how-to-start-your-money-blogging/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>4 Ways To Compute How Much Your Blog Worth</title>
		<link>http://www.aowaa.com/4-ways-to-compute-how-much-your-blog-worth/</link>
		<comments>http://www.aowaa.com/4-ways-to-compute-how-much-your-blog-worth/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 03:08:24 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Money Blogging]]></category>
		<category><![CDATA[Resource]]></category>

		<guid isPermaLink="false">http://www.aowaa.com/?p=90</guid>
		<description><![CDATA[Before you start to make money blogging, you should want to know how much your blog worth. There&#8217;s many ways to earn money from blogging, such as advertising stats,write paying post,  sale text link ADs and so on. After you know how much your blog worth, you can make the price when somebody want to [...]]]></description>
			<content:encoded><![CDATA[<p>Before you start to make <a href="http://www.aowaa.com/tag/money-blogging/" target="_self">money blogging</a>, you should want to know how much your blog worth. There&#8217;s many ways to earn money from blogging, such as advertising stats,write paying post,  sale text link ADs and so on. After you know how much your blog worth, you can make the price when somebody want to give you money from blogging.</p>
<p>There are four free websites to service for you and compute your blog worth from many ways.</p>
<p>1. <a href="http://www.dnscoop.com/" target="_blank">dnScoop</a></p>
<p>dnScoop will compute your blog form Google Page Rank, Alexa ranking and back links.</p>
<p><span id="more-90"></span><img class="alignnone size-full wp-image-141" title="dnscoop" src="http://www.aowaa.com/wp-content/uploads/2009/01/dnscoop.jpg" alt="dnscoop" width="510" height="336" /></p>
<p>2. <a href="http://www.websiteoutlook.com/" target="_blank">Website Outlook</a></p>
<p>Website Outlook will show the net worth of your blog, and it will compute how much you can earn form advertising.</p>
<p><img class="alignnone size-full wp-image-143" title="websiteoutlook" src="http://www.aowaa.com/wp-content/uploads/2009/01/websiteoutlook.jpg" alt="websiteoutlook" width="510" height="304" /></p>
<p>3. <a href="http://www.stimator.com/" target="_blank">Stimator</a></p>
<p>After you press [Calculate], it&#8217;s will show you money is ever-increasing. Maybe this will make you happy!!</p>
<p><img class="alignnone size-full wp-image-142" title="stimator" src="http://www.aowaa.com/wp-content/uploads/2009/01/stimator.jpg" alt="stimator" width="513" height="294" /></p>
<p>4. <a href="http://websitevalued.com/" target="_blank">Website Valued</a></p>
<p>Website Valued can give you the highest worth and the lowest worth. It depend on the visitor counter.</p>
<p><img class="alignnone size-full wp-image-140" title="websitevalued" src="http://www.aowaa.com/wp-content/uploads/2009/01/websitevalued.jpg" alt="websitevalued" width="509" height="217" /></p>
<hr />
<p><small>© Alex for <a href="http://www.aowaa.com">Keep Walking</a>, 2009. |
<a href="http://www.aowaa.com/4-ways-to-compute-how-much-your-blog-worth/">Permalink</a> |
<a href="http://www.aowaa.com/4-ways-to-compute-how-much-your-blog-worth/#comments">2 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.aowaa.com/4-ways-to-compute-how-much-your-blog-worth/&title=4 Ways To Compute How Much Your Blog Worth">del.icio.us</a>
<br/>
Post tags: <a href="http://www.aowaa.com/tag/blogging/" rel="tag">Blogging</a>, <a href="http://www.aowaa.com/tag/free/" rel="tag">Free</a>, <a href="http://www.aowaa.com/tag/money-blogging/" rel="tag">Money Blogging</a>, <a href="http://www.aowaa.com/tag/resource/" rel="tag">Resource</a><br/>
</small></p>
	<h3>Related posts: </h3>
	<ul class="st-related-posts">
	<li><a href="http://www.aowaa.com/the-collection-of-free-wordpress-theme-collection/" title="The Collection of Free Wordpress Themes Collection (December 3, 2009)">The Collection of Free Wordpress Themes Collection</a> (2)</li>
	<li><a href="http://www.aowaa.com/how-to-start-your-money-blogging/" title="How To Start Your Money Blogging (March 4, 2009)">How To Start Your Money Blogging</a> (3)</li>
	<li><a href="http://www.aowaa.com/7-bookmark-share-social-service-for-blogging/" title="7 Bookmark &#038; Share Social Service for Blogging (March 11, 2009)">7 Bookmark &#038; Share Social Service for Blogging</a> (0)</li>
	<li><a href="http://www.aowaa.com/what-can-we-do-if-we-have-a-blog/" title="What can we do if we have a Blog? (September 29, 2008)">What can we do if we have a Blog?</a> (4)</li>
	<li><a href="http://www.aowaa.com/how-to-add-advertisement-between-posts-in-wordpress/" title="How to Add Advertisement Between Posts in Wordpress (November 13, 2009)">How to Add Advertisement Between Posts in Wordpress</a> (0)</li>
	<li><a href="http://www.aowaa.com/hello-world/" title="Hello world! (September 28, 2008)">Hello world!</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.aowaa.com/4-ways-to-compute-how-much-your-blog-worth/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
