<?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>Lets Build Websites &#187; posts</title>
	<atom:link href="http://letsbuildwebsites.com/tag/posts/feed/" rel="self" type="application/rss+xml" />
	<link>http://letsbuildwebsites.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 19 May 2012 03:02:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Remove Adsense From Certain Pages and Post in Thesis</title>
		<link>http://letsbuildwebsites.com/remove-adsense-from-certain-pages-and-post-in-thesis/</link>
		<comments>http://letsbuildwebsites.com/remove-adsense-from-certain-pages-and-post-in-thesis/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 12:12:45 +0000</pubDate>
		<dc:creator>mitz</dc:creator>
				<category><![CDATA[Adding Adsense to Wordpress]]></category>
		<category><![CDATA[p]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[Remove Adsense]]></category>

		<guid isPermaLink="false">http://wordpress-websitebuilder.com/?p=5218</guid>
		<description><![CDATA[When adding Google Adsense to your WordPress website it is very handy to be able to choose which pages and posts AdSense appears on, therefore you might need to remove Adsense from the ones you want. This tutorial is targeting the Thesis WordPress theme as this is one of the most versatile premium themes I have. I actually [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.shareasale.com/r.cfm?b=202505&amp;u=450974&amp;m=24570&amp;urllink=&amp;afftrack=" target="_blank"><img class="alignleft" src="http://www.shareasale.com/image/24570/thesis-300x250-1.png" alt="Thesis Theme for WordPress:  Options Galore and a Helpful Support Community" border="0" /></a>When adding Google Adsense to your WordPress website it is very handy to be able to choose which pages and posts AdSense appears on, therefore you might need to <b>remove Adsense</b> from the ones you want. This tutorial is targeting the <a href="http://letsbuildwebsites.com/go/thesis" target="_blank">Thesis</a> WordPress theme as this is one of the most versatile <a title="WordPress Premium Themes in My Internet Marketing Toolbox" href="http://letsbuildwebsites.com/wordpress-premium-themes-in-my-internet-marketing-toolbox/" target="_blank">premium themes</a> I have. I actually bought Thesis for this exact reason.</p>
<p><em>Firstly, I need to explain why I would want to remove AdSense from a particular post or page.</em></p>
<p>I am a huge Adsesne fan and it is a great way to make money online. But it is not a good idea to have all your eggs in one basket, we have all heard this before. A few years ago, I really only used AdSense ads to make money online and I knew this was a bad idea. Therefore in the past few years I have been diversifying my moneymaking methods. Earlier I wrote an article about how I make money online and even though I missed out on half my moneymaking ways, you can get the picture that it is now a total mix of methods.</p>
<p>When it comes to Google AdSense ads, this is still the backbone of my business, but other moneymaking ways are approaching fast. There are so many ways to <a title="How I Make Money Online With Worpdress Websites – Part 2" href="http://letsbuildwebsites.com/make-money-online-part-2/">make money online</a> so you need to make choices. I have found existing webpages, added affiliate banners and links to test to see if I could make more money out of existing pages. Of course this does not work every page and post and therefore I keep AdSense showing on some of them. This is why I need to choose which pages and posts AdSense appears on in Thesis. Some pages and posts have double the income by removing AdSense and placing the appropriate product to sell. Like I said this does not work for every page or post, so AdSense has now become the backup moneymaker, if the other tests do not work out.</p>
<h2>Remove Adsense From Certain Pages and Post in Thesis</h2>
<p>Here is the original code that I placed into my <code>custom functions.php</code> file. This is exactly what I had to add a AdSense ads to every post on my Thesis blog. I used CSS to position the ad.</p>
<p><code>function single_post_ad_300() {<br />
if (is_single()) { ?&gt;<br />
&lt;div&gt;<br />
My Adsense Code Here<br />
&lt;/div&gt;<br />
&lt;?php<br />
}<br />
add_action('thesis_hook_before_post', 'single_post_ad_300');</code></p>
<p>But I needed to remove Google Adsense ads from certain pages so I changed one line:</p>
<p><code>if (is_single()) { ?&gt;</code></p>
<p>to</p>
<p><code>if (!is_page() &amp;&amp; !is_single( array( 13406,5526,1025,14717,795,991,649, ) )) {  ?&gt;</code></p>
<p>The numbers I have placed in there are post numbers. All you have to do is<a title="Find a page ID number after changing permalinks in WordPress" href="http://letsbuildwebsites.com/find-a-page-id-number-after-changing-permalinks-in-wordpress/" target="_blank"> find the post number</a> and add it in.</p>
<h2>Watch this video showing how to find the post ID (number)</h2>
<iframe width="640" height="385" src="http://www.youtube.com/embed/8-MqNV3JX3U" frameborder="0" type="text/html"></iframe><div style="text-align:right;"><a style="color:#aaa;font-size:9px" href="http://www.clickonf5.org/" title="IFRAME Embed for Youtube Free WordPress Plugin" target="_blank">IFRAME Embed for Youtube</a></div>
<h2>Add Adsense to a particular page</h2>
<p>In this example I am adding ads to only certain pages. This way is hard work and I would much rather not list all the single posts to add Adsense to. However i have used this code for adding things like Facebook comments to certain pages and posts only.</p>
<p><code>if (is_single('470') || is_single('415') || is_single('418') || is_single('441')) { ?&gt;</code></p>
<p>Another way is to use array:</p>
<p><code>if  (is_single( array( 484,526,2699, ) )) { ?&gt;</code></p>
<h3>Remove Adsense From Certain Pages and Post in Thesis</h3>
<p>Now some people may say this is a waste of time but I have an example for you to show that it is not. The funny thing is, I asked a WordPress Theme guru how to do this with his theme and he basically told me it was a waste of time and didn&#8217;t give me an answer. Now I do not recommend his themes because I thought he was totally close minded.</p>
<p>Anyway I will stop blabbing and show you the proof. This screenshot below is from a product I am selling. I had to remove the Adsense Ads from 4 posts to get this income.</p>
<p><a href="http://letsbuildwebsites.com/wp-content/uploads/2011/12/15-12-2011-9-29-55-AM.png"><img class="alignnone size-medium wp-image-6121" title="15-12-2011 9-29-55 AM" src="http://letsbuildwebsites.com/wp-content/uploads/2011/12/15-12-2011-9-29-55-AM-300x72.png" alt="Remove Adsense"width="300" height="72" /></a></p>
<p>Unfortunately I cannot tell you the pages I am talking about as they are highly competitive pages but this is how you keep moving forward. Adsense was clearly giving me the clue telling me the pages were valuable. I just took that information and used it to my advantage.</p>
<p>Therefore I turned approx $400 a month from Adsense into $1000 a month and climbing! Now that is why I do this and that is why it is sometimes a smart move. Yes I had earnings from these 4 posts but now I have optimized my earnings without increasing traffic or adding new content.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://letsbuildwebsites.com/remove-adsense-from-certain-pages-and-post-in-thesis/feed/</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
		<item>
		<title>How do I edit a wordpress page to display only the posts, so minus the menubars?</title>
		<link>http://letsbuildwebsites.com/how-do-i-edit-a-wordpress-page-to-display-only-the-posts-so-minus-the-menubars/</link>
		<comments>http://letsbuildwebsites.com/how-do-i-edit-a-wordpress-page-to-display-only-the-posts-so-minus-the-menubars/#comments</comments>
		<pubDate>Sat, 29 May 2010 08:58:00 +0000</pubDate>
		<dc:creator>mitz</dc:creator>
				<category><![CDATA[Website Building Stories]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[menubars]]></category>
		<category><![CDATA[minus]]></category>
		<category><![CDATA[only]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://wordpress-websitebuilder.com/how-do-i-edit-a-wordpress-page-to-display-only-the-posts-so-minus-the-menubars/</guid>
		<description><![CDATA[My goal here is to link the wordpress blog entries to a frame in a personal site. So I want only the blog entries to appear, but none of the menu bars or other things associated with wordpress only what was posted. I know wordpress is done in PHP so i was wondering if anybody [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>My goal here is to link the wordpress blog entries to a frame in a personal site. So I want only the blog entries to appear, but none of the menu bars or other things associated with wordpress only what was posted. I know wordpress is done in PHP so i was wondering if anybody knew the specifics of the coding and how I would go about doing this.</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://letsbuildwebsites.com/how-do-i-edit-a-wordpress-page-to-display-only-the-posts-so-minus-the-menubars/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Publish Posts in Your WordPress Website the Correct SEO Way</title>
		<link>http://letsbuildwebsites.com/publish-posts-in-your-wordpress-website-the-correct-seo-way/</link>
		<comments>http://letsbuildwebsites.com/publish-posts-in-your-wordpress-website-the-correct-seo-way/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 04:13:11 +0000</pubDate>
		<dc:creator>mitz</dc:creator>
				<category><![CDATA[Wordpress Posts]]></category>
		<category><![CDATA[Wordpress website basics]]></category>
		<category><![CDATA[Wordpress website SEO]]></category>
		<category><![CDATA[Wordpress website video tutorials]]></category>
		<category><![CDATA[details]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[publish]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://wordpress-websitebuilder.com/?p=101</guid>
		<description><![CDATA[I actually teach people how to make WordPress websites, add content to them, and get found by the Search Engines. The biggest problem I have found is that they forget to fill in all the details when attempting to publish a post. Some beginners have been know to even forget to put a title to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I actually teach people how to make WordPress websites, add content to them, and get found by the Search Engines. The biggest problem I have found is that they forget to fill in all the details when attempting to publish a post. Some beginners have been know to even forget to put a title to the post. This is a bit extreme but it has really happened!</p>
<h3>What you will need to publish posts in your WordPress Website the correct SEO way:</h3>
<ul>
<li>You need a WordPress website. Ha ha, we all know that!</li>
<li>You will need the free plugin &#8220;The all in one SEO pack&#8221;. Please see <a title="WordPress Website Search Engine Optimization Plug-ins" href="http://wordpress-websitebuilder.com/wordpress-website-search-engine-optimization-plug-ins/">top SEO plugins</a>.</li>
</ul>
<h3>I have developed a quick checklist that you should get familiar with when posting content to your WordPress website.</h3>
<ol>
<li>Write a descriptive title to your post. Try and think what people would type into the search engines for this subject. What words would be the most common. Make sure your title has at least 5 &#8211; 10 words in it..Anymore is overkill. The title is going to catch the fish so make it great! Include your keyword. Here is a great way to <a title="Find which keywords to use with the Google external keyword tool" href="http://wordpress-websitebuilder.com/find-which-keywords-to-use-with-the-google-external-keyword-tool/">find keywords</a> to use in the title.</li>
<li>Fill in the body of your post. Make sure each post is over 500 words, more if possible. Visitors do not like to go to a web page with two sentences of information on it. They will leave in a second. I have my own <a title="6 Top Web Content Strategy Tips For Writing Killer Content" href="http://wordpress-websitebuilder.com/6-top-web-content-strategy-tips-for-writing-killer-content/">web content strategy</a> that helps me write top content for my websites. You should also add subtitles with your keywords throughout the post, at least one bulleted list, and some bolded keywords. Google loves good information and you will be rewarded for it. Here are a 10 <a title="Top 10 Onpage SEO Techniques You Need To Know" href="http://wordpress-websitebuilder.com/top-10-onpage-seo-techniques-you-need-to-know/">Onpage SEO tips</a> you should know.</li>
<li>Fill in your tags. These are basically keywords that apply to your post and title. They are not about the website. It&#8217;s all about what&#8217;s in the post. This is how you let people know what it is about.</li>
<li>Choose a category. Do not publish posts in the uncategorized section. If you do then this will show up in your category list. You should try to choose a category that relates to the post. So therefore if the person clicks on the category, they know there will be posts related to that. You WordPress website categories should be set up when building your website and you should be using (LSI) related keywords. Here is an article on <a title="Make post categories when building your WordPress website" href="http://wordpress-websitebuilder.com/make-post-categories-when-building-your-wordpress-website/">how to setup WordPress categories</a>.</li>
<li>Fill in your SEO details. You might have All in one SEO pack or you might have a theme that includes this option like I have with <a href="http://wordpress-websitebuilder.com/go/thesis" target="_blank">Thesis</a>. Also the free plugin from Yoast, WP SEO is great for keeping you on track.</li>
</ol>
<p>For more information please watch the video below.</p>
<p><object width="480" height="385" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/MDZGO3uMiHU&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed width="480" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/MDZGO3uMiHU&amp;hl=en_US&amp;fs=1&amp;" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://letsbuildwebsites.com/publish-posts-in-your-wordpress-website-the-correct-seo-way/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>How to Put Adsense Ads Inline With your WordPress Posts</title>
		<link>http://letsbuildwebsites.com/how-to-put-adsense-ads-inline-with-your-wordpress-posts/</link>
		<comments>http://letsbuildwebsites.com/how-to-put-adsense-ads-inline-with-your-wordpress-posts/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 23:43:34 +0000</pubDate>
		<dc:creator>mitz</dc:creator>
				<category><![CDATA[Adding Adsense to Wordpress]]></category>
		<category><![CDATA[Making money with Wordpress]]></category>
		<category><![CDATA[Wordpress Website Tips & Tricks]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[adsense ads]]></category>
		<category><![CDATA[adsense code]]></category>
		<category><![CDATA[embed code]]></category>
		<category><![CDATA[inline]]></category>
		<category><![CDATA[line up]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[Worpress]]></category>

		<guid isPermaLink="false">http://wordpress-websitebuilder.com/?p=58</guid>
		<description><![CDATA[Building websites with WordPress is easy until you have to start editing the code behind the website. However this is necessary in order to add AdSense code into your posts as it lines it up nicely.  This means it will automatically be added to every post you create in your WordPress website. If you add [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Building websites with WordPress is easy until you have to start editing the code behind the website. However this is necessary in order to add AdSense code into your posts as it lines it up nicely.  This means it will automatically be added to every post you create in your WordPress website. If you add AdSense into your templates you will not have to touch it again and the less you play with the code of your website, the better. I will show you how to add AdSense to your posts so it will line up with the text, embed itself, and look like it is meant to be there.</p>
<ol>
<ol>
<li>Sign into your <strong>WordPress Admin area</strong>.</li>
<li>Click on the <strong>Appearance</strong> menu.</li>
<li>Then click on<strong> Editor</strong>. See the screenshot below.</li>
</ol>
</ol>
<p><img class="alignnone size-full wp-image-56" title="appearnac-editor" src="http://letsbuildwebsites.com/wp-content/uploads/2010/02/appearnac-editor.png" alt="appearnac-editor" width="146" height="125" /></p>
<ol>
<ol>
<li>You will be taken to the <strong>WordPress code editor</strong>. Click on <strong>Single.php</strong> in the right column.  See the screenshot below.</li>
</ol>
</ol>
<p><img class="alignnone size-medium wp-image-57" title="appearnac-editor2" src="http://letsbuildwebsites.com/wp-content/uploads/2010/02/appearnac-editor2-300x291.PNG" alt="appearnac-editor2" width="300" height="291" /></p>
<ol>
<li>When the single.php code shows up you can <strong>copy </strong>all of it and paste it to a notepad, just in case you stuff something up. This is very important. Do not move any text or even add a space where it is not meant to be. Just copy it and make a quick backup of the code. You can press in the code box and then press <strong><em>CTRL + A</em></strong> to select all. Then right click on the selection to choose copy.</li>
<li>Ok after you have backed up this code we can now add something to it.  Look for where the content begins. The code will look something like this <strong>&lt;div class=&#8221;postcontent&#8221;&gt;</strong></li>
<li>We are going to add our code <strong>before</strong> this.</li>
<li>Here&#8217;s the code
<ul>
<li><strong>&lt;div style=&#8221;display:block;float:left;padding:5px;&#8221;&gt;&lt;add your adsense code here&gt;&lt;/div&gt;        </strong></li>
</ul>
</li>
</ol>
<p><strong></strong><br />
<img class="alignnone size-medium wp-image-59" title="appearnac-editor3" src="http://letsbuildwebsites.com/wp-content/uploads/2010/02/appearnac-editor3-300x257.PNG" alt="appearnac-editor3" width="300" height="257" /></p>
<p>Sometimes you might need to put &lt;p&gt; and &lt;/p&gt; tags to make a paragraph around all of this. It really depends what WordPress theme you are using. As you can see in the screenshot above, I have used the &lt;p&gt; tag. On some websites I do not have to.</p>
<p>When you are finished adding your AdSense code in press on the update button below the code window.</p>
<p>If you have backed up your code you can keep adjusting this until you get it right. Then if you can&#8217;t work it out, just paste the original code back in and press on update to save. When playing with the WordPress code editor make sure you are not cutting code when you are meant to be copying it&#8230;Anyway you shouldn&#8217;t have to worry if you make a backup.</p>
]]></content:encoded>
			<wfw:commentRss>http://letsbuildwebsites.com/how-to-put-adsense-ads-inline-with-your-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
	</channel>
</rss>

