<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Get Your Blog Out Of Supplemental Index (Maybe)</title>
	<atom:link href="http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/feed/" rel="self" type="application/rss+xml" />
	<link>http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/</link>
	<description>Slightly Advanced Computer Stuff (and some magic)</description>
	<lastBuildDate>Sat, 21 Nov 2009 04:22:17 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: fruityoaty</title>
		<link>http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/comment-page-1/#comment-13270</link>
		<dc:creator>fruityoaty</dc:creator>
		<pubDate>Fri, 19 Dec 2008 01:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/#comment-13270</guid>
		<description>:D OH WOW. I was just hoping for some clues... didn&#039;t expect this solution. THANK YOU so very much for this.</description>
		<content:encoded><![CDATA[<p> <img src='http://w-shadow.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  OH WOW. I was just hoping for some clues&#8230; didn&#8217;t expect this solution. THANK YOU so very much for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: White Shadow</title>
		<link>http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/comment-page-1/#comment-13269</link>
		<dc:creator>White Shadow</dc:creator>
		<pubDate>Thu, 18 Dec 2008 22:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/#comment-13269</guid>
		<description>Took some thinking, but I figured it out and wrote a small plugin that does what you need. Put the following code in a new .php file and place it in the &quot;plugins&quot; folder : 

&lt;pre lang=&#039;php&#039;&gt;
&lt;?php
/*
Plugin Name: Nofollow Next/Previous Post Links
Plugin URI: http://w-shadow.com/
Description: Applies the nofollow attribute to the links generated by next_post_link/previous_post_link.    
Version: 1.0
Author: Janis Elsts
Author URI: http://w-shadow.com/blog/
*/

add_filter(&#039;next_post_link&#039;, &#039;ws_nofollow_link&#039;, 10,2);
add_filter(&#039;previous_post_link&#039;, &#039;ws_nofollow_link&#039;, 10,2);

function ws_nofollow_link($format, $link){
	return str_replace(&#039;&lt;a &#039;, &#039;&lt;a rel=&quot;nofollow&quot; &#039;, $format);
}
?&gt;
&lt;/pre&gt;

Then activate the new plugin as usual, and voila! :)</description>
		<content:encoded><![CDATA[<p>Took some thinking, but I figured it out and wrote a small plugin that does what you need. Put the following code in a new .php file and place it in the &#8220;plugins&#8221; folder :</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
Plugin Name: Nofollow Next/Previous Post Links
Plugin URI: http://w-shadow.com/
Description: Applies the nofollow attribute to the links generated by next_post_link/previous_post_link.    
Version: 1.0
Author: Janis Elsts
Author URI: http://w-shadow.com/blog/
*/</span>
&nbsp;
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'next_post_link'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'ws_nofollow_link'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'previous_post_link'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'ws_nofollow_link'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> ws_nofollow_link<span style="color: #009900;">&#40;</span><span style="color: #000088;">$format</span><span style="color: #339933;">,</span> <span style="color: #000088;">$link</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;a '</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;a rel=&quot;nofollow&quot; '</span><span style="color: #339933;">,</span> <span style="color: #000088;">$format</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Then activate the new plugin as usual, and voila! <img src='http://w-shadow.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fruityoaty</title>
		<link>http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/comment-page-1/#comment-13267</link>
		<dc:creator>fruityoaty</dc:creator>
		<pubDate>Thu, 18 Dec 2008 19:17:35 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/#comment-13267</guid>
		<description>Thanks for this info. I&#039;ve started to apply some of the things I&#039;ve learned from reading this... Could you please share how to add &quot;nofollow&quot; attribute to these 2 links:

next_post_link()   previous_post_link()

Going crazy Googling for this info...</description>
		<content:encoded><![CDATA[<p>Thanks for this info. I&#8217;ve started to apply some of the things I&#8217;ve learned from reading this&#8230; Could you please share how to add &#8220;nofollow&#8221; attribute to these 2 links:</p>
<p>next_post_link()   previous_post_link()</p>
<p>Going crazy Googling for this info&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: White Shadow</title>
		<link>http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/comment-page-1/#comment-9204</link>
		<dc:creator>White Shadow</dc:creator>
		<pubDate>Sat, 03 Nov 2007 00:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/#comment-9204</guid>
		<description>Interesting, thanks for the info.</description>
		<content:encoded><![CDATA[<p>Interesting, thanks for the info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Beard</title>
		<link>http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/comment-page-1/#comment-9203</link>
		<dc:creator>Andy Beard</dc:creator>
		<pubDate>Sat, 03 Nov 2007 00:15:17 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/#comment-9203</guid>
		<description>Sebastian has another option, though I am not sure if it is any more reliable
http://sebastians-pamphlets.com/cat-post-life-is-getting-better/

I seem to get better results with /* so if it makes you look good, it is usable... but when the numbers jump all over the time for domains you watch periodically, you begin to wonder the value at all.</description>
		<content:encoded><![CDATA[<p>Sebastian has another option, though I am not sure if it is any more reliable<br />
<a href="http://sebastians-pamphlets.com/cat-post-life-is-getting-better/" rel="nofollow">http://sebastians-pamphlets.com/cat-post-life-is-getting-better/</a></p>
<p>I seem to get better results with /* so if it makes you look good, it is usable&#8230; but when the numbers jump all over the time for domains you watch periodically, you begin to wonder the value at all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: White Shadow</title>
		<link>http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/comment-page-1/#comment-9195</link>
		<dc:creator>White Shadow</dc:creator>
		<pubDate>Fri, 02 Nov 2007 21:45:23 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/#comment-9195</guid>
		<description>I got the impression it might be better from reading the comments on the Seo4Fun article, though I admit I can&#039;t really judge.

Is there any reliable way to see which pages are in the main/supplemental index? Looks like the /&amp; trick has been useless for a while and if /* is unreliable, there&#039;s not much left.

Reading through your site and checking out those plugins is already on my TO DO list :)</description>
		<content:encoded><![CDATA[<p>I got the impression it might be better from reading the comments on the Seo4Fun article, though I admit I can&#8217;t really judge.</p>
<p>Is there any reliable way to see which pages are in the main/supplemental index? Looks like the /&#038; trick has been useless for a while and if /* is unreliable, there&#8217;s not much left.</p>
<p>Reading through your site and checking out those plugins is already on my TO DO list <img src='http://w-shadow.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Beard</title>
		<link>http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/comment-page-1/#comment-9193</link>
		<dc:creator>Andy Beard</dc:creator>
		<pubDate>Fri, 02 Nov 2007 21:21:29 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/blog/2007/11/02/get-your-blog-out-of-supplemental-index-maybe/#comment-9193</guid>
		<description>I wouldn&#039;t claim Sandcastles is better or worse, it is just a structure that is suitable for a situation where you tend to link out heavily, both within the content and from dofollowed comments.

Even playing around with linking structure is debatable, many notable SEO experts think there is no such thing as PageRank leakage, but try saying that if you have 600 external links on a page and only 20 or 30 internal links.

One other problem is that the /* method of seeing how many pages are in the primary index is unreliable.

I need to do an &quot;official update&quot; on Custom Query string for Wordpress 2.3+ but there are already hacks. That will make your site flatter. You might also look at blocking some pages with robots.txt

Using my &quot;No Follow Those Dupes&quot; plugin will prevent external leaks from your home page and duplicate content pages that will also help a little.</description>
		<content:encoded><![CDATA[<p>I wouldn&#8217;t claim Sandcastles is better or worse, it is just a structure that is suitable for a situation where you tend to link out heavily, both within the content and from dofollowed comments.</p>
<p>Even playing around with linking structure is debatable, many notable SEO experts think there is no such thing as PageRank leakage, but try saying that if you have 600 external links on a page and only 20 or 30 internal links.</p>
<p>One other problem is that the /* method of seeing how many pages are in the primary index is unreliable.</p>
<p>I need to do an &#8220;official update&#8221; on Custom Query string for Wordpress 2.3+ but there are already hacks. That will make your site flatter. You might also look at blocking some pages with robots.txt</p>
<p>Using my &#8220;No Follow Those Dupes&#8221; plugin will prevent external leaks from your home page and duplicate content pages that will also help a little.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
