<?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; more</title>
	<atom:link href="http://www.ghacks.net/tag/more/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 23:31:44 +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>
	</channel>
</rss>
