<?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>gHacks technology news &#187; search engine optimization</title>
	<atom:link href="http://www.ghacks.net/tag/search-engine-optimization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 20:14:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress SEO: Advanced Nofollow</title>
		<link>http://www.ghacks.net/2009/04/16/wordpress-seo-advanced-nofollow/</link>
		<comments>http://www.ghacks.net/2009/04/16/wordpress-seo-advanced-nofollow/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 17:05:19 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[more]]></category>
		<category><![CDATA[more tag]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress seo]]></category>
		<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12060</guid>
		<description><![CDATA[Wordpress is already well optimized when it comes to SEO (that&#8217;s Search Engine Optimization). There are some basic changes that are usually performed like changing the link structure to include the title of the articles or displaying the title of the article in the web browser&#8217;s title. Most users stop here, some go ahead and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/wordpress.png" alt="wordpress" title="wordpress" width="128" height="128" class="alignleft size-full wp-image-11834" />Wordpress is already well optimized when it comes to SEO (that&#8217;s Search Engine Optimization). There are some basic changes that are usually performed like changing the link structure to include the title of the articles or displaying the title of the article in the web browser&#8217;s title. Most users stop here, some go ahead and install SEO plugins which do some magic in the background.</p>
<p><span id="more-12060"></span>Advanced tips are not that easy to come by and most websites running a Wordpress blog do not have them implemented. This article will list some options that center around the nofollow tag. Nofollow basically tells search engines like Google to not count the link vote that is usually being passed when linking on the Internet. Why is that beneficial? A website has a certain linking power. Each link that is pointing to internal and external resources gets a piece of that linking power. Not all pages should be treated equally however which is what this article is about. It makes for example no sense to pass linking power to internal pages that you do not want to link for, think of privacy policies, contact pages, login, log off or social bookmarking links.</p>
<p>Wordpress themes come with a surprising amount of links, the majority of which is not set to nofollow. Here are a few areas where you should consider placing the nofollow link tag in a Wordpress blog:</p>
<ul>
<li>The more (read more) tag. The page is already linked from the title of the post properly.</li>
<li>Wordpress meta data</li>
<li>Pages like Privacy Policies, Contact Us</li>
<li>Social Bookmarking links</li>
</ul>
<p>To add the nofollow link one would simply add the rel=&quot;nofollow&quot;<br />
 tag to the link structure which is not a problem if the link is displayed in the source code of the theme, for example:</p>
<p><strong>&lt;a href=&quot;http://www.example.com/&quot; rel=&quot;nofollow&quot;&gt;Example Link&lt;/a&gt;</strong></p>
<p>There are however links (like the previously mentioned more tag) that cannot be manipulated in the theme source as the link is created by a php function.</p>
<p>Here is how you make the more tag in Wordpress nofollow:</p>
<ul>
<li>Open the file post-template.php in the wp-includes folder.</li>
<li>Locate the following line beginning with:
<p> <strong>$output .= &#8216; &lt;a href=&quot;&#8217;. get_permalink()</strong>..	</li>
<li>Replace it with:
<p><strong>$output .= &#8216; &lt;a href=&quot;&#8217;. get_permalink() . &quot;#more-$id\&quot; class=\&quot;more-link\&quot; rel=\&quot;nofollow\&quot;&gt;$more_link_text&lt;/a&gt;&quot;;</strong>
</li>
<li>You basically add the rel=\&quot;nofollow\&quot; tag to the line</li>
</ul>
<p>This ensures that all more tags will be nofollow from then on.</p>

	Tags: <a href="http://www.ghacks.net/tag/more/" title="more" rel="tag">more</a>, <a href="http://www.ghacks.net/tag/more-tag/" title="more tag" rel="tag">more tag</a>, <a href="http://www.ghacks.net/tag/nofollow/" title="nofollow" rel="tag">nofollow</a>, <a href="http://www.ghacks.net/tag/search-engine-optimization/" title="search engine optimization" rel="tag">search engine optimization</a>, <a href="http://www.ghacks.net/tag/search-engines/" title="Search Engines" rel="tag">Search Engines</a>, <a href="http://www.ghacks.net/tag/seo/" title="seo" rel="tag">seo</a>, <a href="http://www.ghacks.net/tag/wordpress/" title="wordpress" rel="tag">wordpress</a>, <a href="http://www.ghacks.net/tag/wordpress-seo/" title="wordpress seo" rel="tag">wordpress seo</a>, <a href="http://www.ghacks.net/tag/wordpress-tips/" title="wordpress tips" rel="tag">wordpress tips</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/12/17/wordpress-hack-change-number-of-comments-per-page-in-admin-interface/" title="Wordpress Hack: Change Number Of Comments Per Page In Admin Interface (December 17, 2008)">Wordpress Hack: Change Number Of Comments Per Page In Admin Interface</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/04/08/wordpress-blogs-create-custom-tag-pages/" title="Wordpress Blogs: Create Custom Tag Pages (April 8, 2009)">Wordpress Blogs: Create Custom Tag Pages</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/09/26/search-engine-position-check/" title="Search Engine Position Check (September 26, 2008)">Search Engine Position Check</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/07/03/exclude-categories-from-wordpress-feeds/" title="Exclude Categories From Wordpress Feeds (July 3, 2009)">Exclude Categories From Wordpress Feeds</a> (4)</li>
	<li><a href="http://www.ghacks.net/2007/12/18/an-advice-on-buying-and-selling-websites/" title="An Advice on Buying and Selling Websites (December 18, 2007)">An Advice on Buying and Selling Websites</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/16/wordpress-seo-advanced-nofollow/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s SEO Starter Guide</title>
		<link>http://www.ghacks.net/2008/11/15/googles-seo-starter-guide/</link>
		<comments>http://www.ghacks.net/2008/11/15/googles-seo-starter-guide/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 11:51:53 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Knowledge]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[google seo]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo guide]]></category>
		<category><![CDATA[seo pdf]]></category>
		<category><![CDATA[seo starter guide]]></category>
		<category><![CDATA[webmaster]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8296</guid>
		<description><![CDATA[Search Engine Optimization is essential for webmasters who want to promote their websites to their fullest extent. It is usually divided into onpage and offpage SEO. Onpage SEO describes the process of optimizing the website itself while offpage SEO describes all methods of attracting links to the website.
Most search engines do not talk about SEO. [...]]]></description>
			<content:encoded><![CDATA[<p>Search Engine Optimization is essential for webmasters who want to promote their websites to their fullest extent. It is usually divided into onpage and offpage SEO. Onpage SEO describes the process of optimizing the website itself while offpage SEO describes all methods of attracting links to the website.</p>
<p>Most search engines do not talk about SEO. This has lead to an incredible amount of SEO related content on the Internet which is usually a mix of experience, rumors, false assumptions and guesswork. </p>
<p>In a somewhat surprising move Google published the <a href="http://googlewebmastercentral.blogspot.com/2008/11/googles-seo-starter-guide.html">SEO Starter Guide</a> on their website. The guide concentrates on onpage SEO and mentions offpage SEO only briefly. Experienced webmasters will not find anything revolutionary in the pdf document which is clearly aimed at webmasters who never came in contact with SEO articles before.</p>
<p><span id="more-8296"></span>It&#8217;s a good read for those webmasters. One thing that&#8217;s done well in the SEO guide is the screenshots that are tied to Google search results to show the effects of certain elements on the website.</p>
<p>No secrets are revealed in the guide but since it is only 22 pages it might be a good read for just about anyone.</p>

	Tags: <a href="http://www.ghacks.net/tag/google-seo/" title="google seo" rel="tag">google seo</a>, <a href="http://www.ghacks.net/tag/search-engine-optimization/" title="search engine optimization" rel="tag">search engine optimization</a>, <a href="http://www.ghacks.net/tag/seo-guide/" title="seo guide" rel="tag">seo guide</a>, <a href="http://www.ghacks.net/tag/seo-pdf/" title="seo pdf" rel="tag">seo pdf</a>, <a href="http://www.ghacks.net/tag/seo-starter-guide/" title="seo starter guide" rel="tag">seo starter guide</a>, <a href="http://www.ghacks.net/tag/webmaster/" title="webmaster" rel="tag">webmaster</a>, <a href="http://www.ghacks.net/tag/websites/" title="websites" rel="tag">websites</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/28/website-information/" title="Website Information (August 28, 2008)">Website Information</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/08/30/use-multiple-internet-explorer-versions-simultaneously/" title="Use Multiple Internet Explorer Versions Simultaneously (August 30, 2008)">Use Multiple Internet Explorer Versions Simultaneously</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/06/24/sitepoint-raises-rates-tells-customers-to-stop-whining/" title="SitePoint Raises Rates; Tells Customers to Stop Whining (June 24, 2009)">SitePoint Raises Rates; Tells Customers to Stop Whining</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/08/13/server-monitoring-with-observu/" title="Server Monitoring With Observu (August 13, 2008)">Server Monitoring With Observu</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/10/26/publish-rss-news-feeds-on-twitter/" title="Publish RSS News Feeds On Twitter (October 26, 2008)">Publish RSS News Feeds On Twitter</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/15/googles-seo-starter-guide/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Search Engine Position Check</title>
		<link>http://www.ghacks.net/2008/09/26/search-engine-position-check/</link>
		<comments>http://www.ghacks.net/2008/09/26/search-engine-position-check/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 09:23:44 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[search engine optimization program]]></category>
		<category><![CDATA[search engine optimization software]]></category>
		<category><![CDATA[search engine position]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seo software]]></category>
		<category><![CDATA[serps finder]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=7234</guid>
		<description><![CDATA[Webmasters who want to earn money or achieve a greater exposure for their website need to check keyword rankings constantly to analyze the progress of their website for that keyword in the search engines. A desired position in the search engines for a specific keywords is usually located on the first page of results. Position [...]]]></description>
			<content:encoded><![CDATA[<p>Webmasters who want to earn money or achieve a greater exposure for their website need to check keyword rankings constantly to analyze the progress of their website for that keyword in the search engines. A desired position in the search engines for a specific keywords is usually located on the first page of results. Position one receives the majority of search engine traffic from visitors because most users think that the first result has to provide them with the best information. That is not always the case but a completely different topic.</p>
<p>Professional webmasters use search engine optimization software to check the search engine position of their keywords. Those software applications provide a history, comparison and access to hundreds of other information that can all be useful in determining why a website is ranking the way it is.</p>
<p>Low budget webmasters have to either rely on manual searches which is so time consuming that one could spend a whole day checking a few dozen keywords in the major search engines.</p>
<p><span id="more-7234"></span>That&#8217;s where <a href="http://www.4neurons.com/other/SERPs%20Finder/">SERPs Finder</a> comes into play. The basic SEO tool can check the search engine position of a given keyword in the major three search engines (Google, Yahoo and Windows Live).</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2008/09/search_engine_position.jpg" alt="search engine position" title="search engine position" width="285" height="190" class="alignnone size-medium wp-image-7235" /></p>
<p>It checks the first hundred results only for Google who like to temporarily ban an IP from their search engine if excessive use has been detected. The other two search engines are checked for the first 1000 results.</p>
<p>It is only possible to check the results in one search engine at a time. The user will be notified if the website is found in the results and the search engine position checker will load that search result&#8217;s page in the default browser.</p>
<p>SERP&#8217;s Finder is no tool for webmasters who want to check hundreds of keywords but it is great for small websites with only a few keywords.</p>

	Tags: <a href="http://www.ghacks.net/tag/search-engine-optimization/" title="search engine optimization" rel="tag">search engine optimization</a>, <a href="http://www.ghacks.net/tag/search-engine-optimization-program/" title="search engine optimization program" rel="tag">search engine optimization program</a>, <a href="http://www.ghacks.net/tag/search-engine-optimization-software/" title="search engine optimization software" rel="tag">search engine optimization software</a>, <a href="http://www.ghacks.net/tag/search-engine-position/" title="search engine position" rel="tag">search engine position</a>, <a href="http://www.ghacks.net/tag/seo/" title="seo" rel="tag">seo</a>, <a href="http://www.ghacks.net/tag/seo-software/" title="seo software" rel="tag">seo software</a>, <a href="http://www.ghacks.net/tag/serps-finder/" title="serps finder" rel="tag">serps finder</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/16/wordpress-seo-advanced-nofollow/" title="Wordpress SEO: Advanced Nofollow (April 16, 2009)">Wordpress SEO: Advanced Nofollow</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/05/26/analyzing-text-with-text-analyzer/" title="Analyzing Text With Text Analyzer (May 26, 2009)">Analyzing Text With Text Analyzer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/12/18/why-content-is-king-on-the-internet/" title="Why content is king on the internet (December 18, 2008)">Why content is king on the internet</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/07/26/webmasters-search-for-links-posted-on-twitter/" title="Webmasters: Search For Links Posted On Twitter (July 26, 2009)">Webmasters: Search For Links Posted On Twitter</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/02/16/web-ceo-free/" title="Web CEO Free (February 16, 2008)">Web CEO Free</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/09/26/search-engine-position-check/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
