<?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>nhaskins.com &#187; seo</title>
	<atom:link href="http://nhaskins.com/tag/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://nhaskins.com</link>
	<description>web development note book</description>
	<lastBuildDate>Thu, 17 May 2012 13:18:00 +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>All-In-One-SEO plugin not working with y&#8230;</title>
		<link>http://nhaskins.com/status/all-in-one-seo-plugin-not-working-with-y/</link>
		<comments>http://nhaskins.com/status/all-in-one-seo-plugin-not-working-with-y/#comments</comments>
		<pubDate>Fri, 14 May 2010 13:15:28 +0000</pubDate>
		<dc:creator>Nathan Haskins</dc:creator>
				<category><![CDATA[status]]></category>
		<category><![CDATA[header.php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nhaskins.com/status/all-in-one-seo-plugin-not-working-with-y/</guid>
		<description><![CDATA[All-In-One-SEO plugin not working with your new theme? try adding &#60;?php wp_head(); ?&#62; just before the closing head tag in header.php.]]></description>
			<content:encoded><![CDATA[<p>All-In-One-SEO plugin not working with your new theme? try adding </p>
<pre><code>&lt;?php wp_head(); ?&gt;</code></pre>
<p> just before the closing head tag in header.php.</p>
]]></content:encoded>
			<wfw:commentRss>http://nhaskins.com/status/all-in-one-seo-plugin-not-working-with-y/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress name alias generator</title>
		<link>http://nhaskins.com/post/wordpress-name-alias-generator/</link>
		<comments>http://nhaskins.com/post/wordpress-name-alias-generator/#comments</comments>
		<pubDate>Thu, 06 May 2010 13:52:05 +0000</pubDate>
		<dc:creator>Nathan Haskins</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[idea]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nhaskins.com/post/wordpress-name-alias-generator/</guid>
		<description><![CDATA[I have a bunch of variations on my name out there on the web&#8230; neight, nate, nathan, nathan haskins, neight401&#8230; etc. My blog posts google seems to love indexing but they only catch &#8216;nathan haskins&#8217; as a name. Im conducting an experiment, I&#8217;m going to have it randomly pick one of my aliases at runtime [...]]]></description>
			<content:encoded><![CDATA[<p>I have a bunch of variations on my name out there on the web&#8230; neight, nate, nathan, nathan haskins, neight401&#8230; etc.  My blog posts google seems to love indexing but they only catch &#8216;nathan haskins&#8217; as a name.  </p>
<p>Im conducting an experiment, I&#8217;m going to have it randomly pick one of my aliases at runtime and insert it as the author name, lets see if the search engines show me some love.  </p>
<p>using the p2 theme..</p>
<p><strong>entry.php</strong> (~ line 16)</p>
<pre><code>printf(
  '&lt;a href="%1$s" title="%2$s"&gt;'.randomName().'&lt;/a&gt;',
   get_author_posts_url( p2_get_author_id() ),
   sprintf( __( 'Posts by %s', 'p2' ), p2_get_author_name() ),
  get_the_author()
  );
</code></pre>
<p><strong>function.php</strong></p>
<pre><code>function randomName(){

    $myName = array('Nathan Haskins', 'Neight Haskins', 'Nathan A Haskins', 'Nate Haskins', 'nhaskins', 'neight401');
    $randValue = rand(0, count($myName)-1);
    $output = $myName[$randValue];
    return $output;
}

</code></pre>
<p>*sidenote if I use markup=&#8221;none&#8221; in the code tags, it will prevent the anchor tags from turing into links&#8230; nice</p>
<p><strong>Update: 5/9/10</strong><br />
-The experiment is working, and I&#8217;m quicking ranking as #1 most of my aliases now hah!  The variation of &#8216;nate haskins&#8217; is going to be difficult to get&#8230;</p>
<p><strong>Update 5/10/10</strong><br />
google search results</p>
<p>&#8216;neight401&#8242; &#8211; #1 result<br />
&#8216;nathan haskins &#8216; &#8211; #1 result<br />
&#8216;nhaskins&#8217; &#8211; #2 result&#8230; getting beat out by some dude commenting on a mac forum.<br />
&#8216;nate haskins &#8216;  &#8211; still not found on the first page<br />
&#8216;neight&#8217; &#8211; still not found on the first page</p>
]]></content:encoded>
			<wfw:commentRss>http://nhaskins.com/post/wordpress-name-alias-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

