<?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>ActiveBlogging &#187; SEO</title>
	<atom:link href="http://activeblogging.com/info/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://activeblogging.com</link>
	<description>The Knowledge You Need For The Blog You Want</description>
	<lastBuildDate>Tue, 01 May 2012 10:22: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>
		<item>
		<title>Are Your Blog Pages &#8216;Section Targeted&#8217; by Google?</title>
		<link>http://activeblogging.com/info/are-your-blog-pages-section-targeted-by-google/</link>
		<comments>http://activeblogging.com/info/are-your-blog-pages-section-targeted-by-google/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 07:33:07 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress Tech]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=1383</guid>
		<description><![CDATA[<p>For some time, Google has had a way to filter web pages, called Google Section Targeting &#8211; using it, pages can emphasize one part over another, and bloggers improve the focus of their site. </p><p>This can be important, especially for WordPress bloggers. For example, I once wrote on another blog about a dog ebook. For days afterwards, no matter what I wrote about, the Google ads remained for dog-related items! </p><p>On other occasions, I&#8217;ve received emails from people asking why they get ads for blogging items, although they never write ...</p>]]></description>
			<content:encoded><![CDATA[<p>For some time, Google has had a way to filter web pages, called Google Section Targeting &#8211; using it, pages can emphasize one part over another, and bloggers improve the focus of their site.</p>
<p>This can be important, especially for WordPress bloggers. For example, I once wrote on another blog about a dog ebook. For days afterwards, no matter what I wrote about, the Google ads remained for dog-related items!</p>
<p>On other occasions, I&#8217;ve received emails from people asking why they get ads for blogging items, although they never write about blogging.</p>
<p>Google filtering can help with this.</p>
<p>Does it work? Yes &#8211; but for WordPress blogs, the key is to add them appropriately, to help focus the topic. For example, to place the tags around the articles themselves, you&#8217;d want to add code inside the WordPress &#8216;loop&#8217; (such as found in &lt;strong&gt;index.php&lt;/strong&gt;):</p>
<p><code>&lt;?php while (have_posts()) : the_post(); ?&gt;<br />
&lt;!-- google_ad_section_start --&gt;<br />
&lt;div id="post-&lt;?php the_ID(); ?&gt;"&gt;<br />
...the rest of the code...<br />
&lt;/div&gt;<br />
&lt;!-- google_ad_section_start --&gt;<br />
&lt;?php endwhile; ?&gt;</code></p>
<p>The &#8220;<strong>&lt;!&#8212; google&#8230;</strong>&#8221; lines are the new ones to add. This will emphasize the articles, and deemphasize the rest of the page for Google&#8217;s search engines.</p>
<p>One exception arises here &#8211; what about the main page, where there can be several articles? In my case, the dog article stayed on the front page for a while, skewing the ads. Ideally, I&#8217;d like the topmost article only to stand out. For that, we can just replace those Google lines with a bit of PHP code:</p>
<p><code>&lt;?php while (have_posts()) : the_post(); ?&gt;<br />
&lt;?php static $ab_count=0; if (++$ab_count&lt;=1)<br />
echo "&lt;!-- google_ad_section_start --&gt;"; ?&gt;<br />
&lt;div id="post-&lt;?php the_ID(); ?&gt;"&gt;<br />
...the rest of the code...<br />
&lt;/div&gt;<br />
&lt;?php if ($ab_count++&lt;=1)<br />
echo "&lt;!-- google_ad_section_start --&gt;"; ?&gt;<br />
&lt;?php endwhile; ?&gt;</code></p>
<p>If you use this code, and look at the source code of your main blog page (use your browser&#8217;s &#8216;View Source&#8217; option), you&#8217;ll see these tags are only around the first article &#8211; helping Google focus on it.</p>
<p>Google also provide a demphasizing tag, to tell it to view sections as less important. Use</p>
<p><code>&lt;!-- google_ad_section_start(weight=ignore) --&gt;</code></p>
<p>to start a section, and</p>
<p><code>&lt;!-- google_ad_section_end --&gt;</code></p>
<p>to end it.</p>
<p>Notice I say &#8216;less important&#8217;, not  &#8216;ignore&#8217; &#8211; in fact, Google is very careful to say they will still index the whole page, only that they will give greater or lesser weight to certain sections (check Google&#8217;s site and blog for more about this topic).</p>
<p>This code can be useful in certain areas &#8211; for example, in WordPress blogs:</p>
<ul>
<li> If your sidebar is affecting your listing (for example, by showing older article titles) then place the tags at the first and last lines of your sidebar.php file, enclosing them.</li>
<li> If your footer has text in it, likewise use the tags just before and after any text in the footer.php file (but be careful to place all tags before the ending &lt;/body&gt; HTML tag).</li>
</ul>
<p>If you find yourself asking &#8216;why do my Google ads never reflect my topics&#8217; consider adding Google Section targeting. It&#8217;s simple and free, and can focus your ads. And with more targeted ads, you can expect your click through rates to rise &#8211; and profits too.</p>
<p><strong>[This is based on an article from the <a href="http://activeblogging.com/reports/#200603">ActiveBlogging Report of March 2006</a> - for the article and much more, <a href="http://activeblogging.com/member-benefits/">join ActiveBlogging Platinum</a> today]</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/are-your-blog-pages-section-targeted-by-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does Brian Williams Tweet? And Is Twitter REALLY Worth Your Time?</title>
		<link>http://activeblogging.com/info/does-brian-williams-tweet-and-is-twitter-really-worth-your-time/</link>
		<comments>http://activeblogging.com/info/does-brian-williams-tweet-and-is-twitter-really-worth-your-time/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 15:11:38 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=555</guid>
		<description><![CDATA[<p>I admit it &#8211; I don&#8217;t tweet. And although I&#8217;ve asked around (and researched), I&#8217;ve yet to find a compelling business reason to tweet anytime soon. </p><p>To the uninitiated, Twitter is a site where people can post up to 140-character comments on what they are doing. Although that is over simplified, think about a friend wandering around with a phone telling you what he&#8217;s up to while he&#8217;s doing it, and you get the general idea. People drop in and subscribe to see what&#8217;s going on with a particular person ...</p>]]></description>
			<content:encoded><![CDATA[<p>I admit it &#8211; I don&#8217;t tweet. And although I&#8217;ve asked around (and researched), I&#8217;ve yet to find a compelling business reason to tweet anytime soon.</p>
<p>To the uninitiated, Twitter is a site where people can post up to 140-character comments on what they are doing. Although that is over simplified, think about a friend wandering around with a phone telling you what he&#8217;s up to while he&#8217;s doing it, and you get the general idea. People drop in and subscribe to see what&#8217;s going on with a particular person &#8211; &#8220;subscribing&#8221; to the tweets.</p>
<p>Now I&#8217;m not saying Twitter is a waste of time (the same could be said about blogs, or reality television, or even books by some people). However, as Brian Williams pointed out on Thursday&#8217;s Daily Show, he doesn&#8217;t twitter because he doesn&#8217;t feel his day to day life is interesting enough. Since a world-renowned journalist and television personality doesn&#8217;t see himself twitting, I feel I&#8217;m in good company.</p>
<p>However, some people can and should Twitter &#8211; for example:</p>
<ul>
<li>If you&#8217;re Bradgelina, imagine the benefits of twitting everyone in mind-numbing detail about the next baby you&#8217;ve adopted, or the work you&#8217;re doing in New Orleans. You WILL have an audience &#8211; and you could make (another) difference.</li>
<li>If you run a company, employees twittering can help put a human touch on your products and company. Imagine a tweet stream from an auto executive while asking for money in a Congressional hearing &#8211; I&#8217;d read that.</li>
<li>If you&#8217;re at a current event, you could tweet while it&#8217;s live &#8211; the ultimate real-time coverage &#8211; and spend 140 characters per comment tearing down the speakers, presenters, and pointing out how much smarter you are than everyone there (no joke &#8211; as the Twitter examples and comments on <a href="http://danperry.com/wordpress/twitter-as-judge/">Dan Perry&#8217;s blog</a> shows, people are heavily into Twitter-Trashing).</li>
</ul>
<p>So do you Twitter? Personally, I&#8217;m always looking at the bottom line as to how it relates to business. Not being a celebrity/wanna-be celebrity (and therefore not needing to promote myself as part of my &#8220;business&#8221;), the question is: how can Twitter help my business? If you can find a solid business reason to add it, then do so.</p>
<p>However, Brian Williams and I will sit this one out &#8211; at least for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/does-brian-williams-tweet-and-is-twitter-really-worth-your-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Use WordPress?</title>
		<link>http://activeblogging.com/info/why-use-wordpress/</link>
		<comments>http://activeblogging.com/info/why-use-wordpress/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 06:56:44 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=241</guid>
		<description><![CDATA[<p>When I first started on the Internet, websites were done by hand &#8211; and changes were a pain. </p><p>Enterprising programmer that I was, I tried a number of solutions to make changes easier &#8211; server site includes, a Windows template machine I wrote, even batch files in DOS to copy content. </p><p>Then in 2004 I tried a program called WordPress. I&#8217;d heard about blogs, dismissed it as &#8216;not for me&#8217;, but set it up anyways. </p><p>That site, BigBizBlog.com, is still running &#8211; and I was hooked. </p><p>From a writer&#8217;s point ...</p>]]></description>
			<content:encoded><![CDATA[<p>When I first started on the Internet, websites were done by hand &#8211; and changes were a pain.</p>
<p>Enterprising programmer that I was, I tried a number of solutions to make changes easier &#8211; server site includes, a Windows template machine I wrote, even batch files in DOS to copy content.</p>
<p>Then in 2004 I tried a program called WordPress. I&#8217;d heard about blogs, dismissed it as &#8216;not for me&#8217;, but set it up anyways.</p>
<p>That site, BigBizBlog.com, is still running &#8211; and I was hooked.</p>
<p>From a writer&#8217;s point of view, a blogging tool like WordPress makes writing and publishing online easier &#8211; MUCH easier.</p>
<p>But WP is more than that &#8211; because it manages CONTENT, not writing &#8211; and content can be much more than verse or prose.</p>
<p>Content can be information about a company, or a sales page, or FAQ answers.</p>
<p>And a program like WordPress makes adding and changing the site ridiculously easy &#8211; much easier than a decade ago with custom solutions or editing by hand.</p>
<p>But WordPress adds a secret weapon or two that is very hard to do, even by hand.</p>
<p>For example, I could never get a simple search to work on my sites &#8211; code was complicated, expensive, and the search results had to be regenerated after each page addition. With WordPress, these same search results are a byproduct of the powerful mySQL engine under the hood &#8211; simple and easy to use, update, and manage.</p>
<p>Another feature is pinging &#8211; as pages are added, they announce themselves to remote services. These services in turn act like a announcement page for new blogs (and new articles on old blogs). And search engines pay special attention to them. So much so that sites can get traffic without a single link &#8211; as long as they remember to ping (and in the old days, remember, no links meant NO traffic)!</p>
<p>This just touches the surface &#8211; but I not only write about WordPress, I use it daily. And although there are other tools out there to manage sites, I find WP a powerful combination of usefulness, popularity, and power that makes it my favorite.</p>
<p>Make it yours, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/why-use-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is There An SEO Issue or Problem Moving Your WordPress blog?</title>
		<link>http://activeblogging.com/info/seo-problem-moving-wordpress-blog-new-host/</link>
		<comments>http://activeblogging.com/info/seo-problem-moving-wordpress-blog-new-host/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 05:23:04 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=238</guid>
		<description><![CDATA[<p>I received this question recently: you&#8217;re transferring your site from one hosting plan to another &#8211; is there a problem in search engine rankings? </p><p>In my experience, the biggest SEO issue I&#8217;ve ever encountered in transferring web hosts is changing the URL of posts &#8211; either by changing the blog&#8217;s permalink, or the blog&#8217;s root address. </p><p>I once moved a blog from a \blog\ directory to a root directory &#8211; and watched my links disappear from a search engine! Now, older and (somewhat) wiser, I would use redirection entries in ...</p>]]></description>
			<content:encoded><![CDATA[<p>I received this question recently: you&#8217;re transferring your site from one hosting plan to another &#8211; is there a problem in search engine rankings?</p>
<p>In my experience, the biggest SEO issue I&#8217;ve ever encountered in transferring web hosts is changing the URL of posts &#8211; either by changing the blog&#8217;s permalink, or the blog&#8217;s root address.</p>
<p>I once moved a blog from a <strong>\blog\</strong> directory to a root directory &#8211; and watched my links disappear from a search engine! Now, older and (somewhat) wiser, I would use redirection entries in my <strong>&#46;htaccess</strong> file to fix that, but at the time I just watched it all go away.</p>
<p>Some people mention that there are certain locations that Google ranks less &#8211; but the problem is, if Google really does rate certain &#8216;neighborhoods&#8217; bad, then they may be overlooking a site or two that is good &#8211; and NOT indexing vital information, their bread and butter. So I&#8217;m skeptical of that being a major factor.</p>
<p>However, one big bugaboo with URLs is in the domain &#8211; moving a <strong>www.</strong> prefixed domain to one without, or vice versa.  <strong>www.ActiveBlogging.com</strong> and <strong>ActiveBlogging.com</strong> are not exactly the same in Google&#8217;s eyes, and so make sure your URL stays exactly the same to avoid problems.</p>
<p>So when moving, keep the same permalink, keep the same address (with or without the <strong>www.</strong> as specified in the <strong>General Settings</strong> tab (the <strong>Settings</strong> section of your WordPress Admin), and place the blog in the same location as in your old site (that is, make the subdirectory or root the same).</p>
<p>Keep this in mind, and the transfer should go fine as far as SEO goes.</p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/seo-problem-moving-wordpress-blog-new-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress And Fingerprints &#8211; Does Google Always Know Who You Are?</title>
		<link>http://activeblogging.com/info/does-google-see-wordpress-fingerprints/</link>
		<comments>http://activeblogging.com/info/does-google-see-wordpress-fingerprints/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 08:22:15 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=226</guid>
		<description><![CDATA[<p>I could spend words and words leading up to the simple answer to this question: </p><p>Yes. </p><p>And there&#8217;s not a darn thing anyone can do about it. </p><p>I was prompted by this when I heard of a product that promised to &#8216;hide&#8217; WordPress from the search engines. Of course, every product has its hype, and that IS a neat way to advertise it. In fact, I suspect he/she may get sales because of that angle.  </p><p>However, there&#8217;s really no way to hide WordPress, as long as it uses WordPress ...</p>]]></description>
			<content:encoded><![CDATA[<p>I could spend words and words leading up to the simple answer to this question:</p>
<p>Yes.</p>
<p>And there&#8217;s not a darn thing anyone can do about it.</p>
<p>I was prompted by this when I heard of a product that promised to &#8216;hide&#8217; WordPress from the search engines. Of course, every product has its hype, and that IS a neat way to advertise it. In fact, I suspect he/she may get sales because of that angle. </p>
<p>However, there&#8217;s really no way to hide WordPress, as long as it uses WordPress to make the site. For instance:</p>
<ul>
<li>Every WP site needs a <strong>/wp-content/</strong> directory as well as <strong>/wp-admin/</strong> and <strong>/wp-includes/</strong> &#8211; and these are all &#8216;visible&#8217; from the site.</li>
<li>There are files besides <strong>index.php</strong> at the blog root &#8211; and although you can move the CONTENTS of <strong>wp-config.php</strong> (for security reasons), the file still needs to be there. You&#8217;ll get an empty page if you try to look at it &#8211; but you will get something. And Google can do the same thing.</li>
</ul>
<p>OK. So, the question is, since Google knows my blog is here, and I&#8217;m using WordPress, should I care?</p>
<p>No. </p>
<p>And the reasons are very simple:</p>
<ul>
<li>Google wants to index information &#8211; if you have information on your site, Google wants to index you. And a WordPress blog makes it easier to index, not harder, since it&#8217;s a known product, with a familiar structure and layout (not to mention syntactically correct HTML, which a &#8216;roll your own&#8217; product may not have).</li>
<li>Likewise, ANY site with crap on it is Google&#8217;s bane. Thinking a bad site will get away with it because Google doesn&#8217;t recognize the underlying framework is like saying you can confuse people into buying a straw house just because it&#8217;s in an nice neighborhood. And while it may work in the short term, search engines are smart, and bad content will be found out.</li>
</ul>
<p>So watch out for the hype &#8211; CONTENT is what gets a site noticed by search engines. And while we may not be able to hide our WordPress &#8216;roots&#8217;, I see no reason to do so!</p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/does-google-see-wordpress-fingerprints/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why You Should NOT Install WordPress In A Sub Directory Named &#8216;blog&#8217;</title>
		<link>http://activeblogging.com/info/why-you-should-not-install-wordpress-in-a-sub-directory-named-blog/</link>
		<comments>http://activeblogging.com/info/why-you-should-not-install-wordpress-in-a-sub-directory-named-blog/#comments</comments>
		<pubDate>Tue, 20 May 2008 06:01:09 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress Tech]]></category>

		<guid isPermaLink="false">http://activeblogging.com/info/why-you-should-not-install-wordpress-in-a-sub-directory-named-blog/</guid>
		<description><![CDATA[<p>Some people install WordPress in a subdirectory, so they can point to their blog from their main site. </p><p>The initial impulse usually seems to be to name the directory /blog/ </p><p>This is  often not a good idea, for a couple of reasons: </p><p>Keywords in the URL are valuable. This is prime real estate in your Search Engine Optimization efforts, and shouldn&#8217;t be ignored. For example, if you&#8217;re doing a blog on dog training, which do you think benefits you more: </p><p>http://egwebsite.com/dog-training/index.php </p><p>http://egwebsite.com/blog/index.php </p><p>Install your blog in a subdirectory called ...</p>]]></description>
			<content:encoded><![CDATA[<p>Some people install WordPress in a subdirectory, so they can point to their blog from their main site.</p>
<p>The initial impulse usually seems to be to name the directory <strong>/blog/</strong></p>
<p>This is  often not a good idea, for a couple of reasons:</p>
<ul>
<li><strong>Keywords in the URL are valuable</strong>. This is prime real estate in your Search Engine Optimization efforts, and shouldn&#8217;t be ignored. For example, if you&#8217;re doing a blog on dog training, which do you think benefits you more:
<p><code>http://egwebsite.com/dog-training/index.php</code><br />
<code>http://egwebsite.com/blog/index.php</code></p>
<p>Install your blog in a subdirectory called <strong>/dog-training/</strong> and you add keywords at no extra charge.</li>
<li><strong>You cue in the search engines</strong>. Many time I hear from people who are wondering why their blogs are full of &#8216;blogging&#8217; Adsense ads. Far too often, they&#8217;ve installed in a <strong>/blog/</strong> subdirectory. While it&#8217;s not the only thing, this helps guide Google into thinking you&#8217;re a blogger first and foremost.</li>
</ul>
<p>It&#8217;s a small detail, but really hard to change after the fact. If you know the focus of your blog, consider a different subdirectory than <strong>/blog/</strong> &#8211; after all, those extra keywords can&#8217;t hurt!</p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/why-you-should-not-install-wordpress-in-a-sub-directory-named-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

