<?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>How To Blog &#187; good shape</title>
	<atom:link href="http://bradtheblogboy.com/tag/good-shape/feed/" rel="self" type="application/rss+xml" />
	<link>http://bradtheblogboy.com</link>
	<description>blogging 102</description>
	<lastBuildDate>Fri, 14 May 2010 06:03:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Keywords In Your Post</title>
		<link>http://bradtheblogboy.com/seo/keywords-in-your-post/?source=rss</link>
		<comments>http://bradtheblogboy.com/seo/keywords-in-your-post/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 00:51:21 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[free tool]]></category>
		<category><![CDATA[good free tool]]></category>
		<category><![CDATA[good shape]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google search]]></category>
		<category><![CDATA[How To Blog]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[meta keywords]]></category>
		<category><![CDATA[Nathan Rice]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[ScribeFire]]></category>
		<category><![CDATA[searc]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[semantic tags]]></category>
		<category><![CDATA[tag area]]></category>
		<category><![CDATA[tag name]]></category>
		<category><![CDATA[Tags]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[title tags]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordsfinder]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=152</guid>
		<description><![CDATA[Reading time: 2 &#8211; 4 minutes
One of the four most important aspects of writing a post is picking out the right keywords from the text.  This isn&#8217;t something often mention in your standard how to blog post.  There is only one really good free tool and I reccomend using it every time you post.  Wordsfinder [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 2 &#8211; 4 minutes</p>
<p>One of the four most important aspects of writing a post is picking out the right keywords from the text.  This isn&#8217;t something often mention in your standard <strong><a href="http://www.bradtheblogboy.com">how to blog</a></strong> post.  There is only one really good free tool and I reccomend using it every time you post.  <a href="http://www.wordsfinder.com">Wordsfinder</a> will pick out what it sees as your best go to keywords based on a Google Search.  You simply cut and paste your text into the box and it spits out a list of your best keywords.  Copy the the ready to use list, and paste it into the custom field value box in the Wordpress write/edit post page and label the key as keywords.  Remember to save or publish after this step or they won&#8217;t be part of the post&#8217;s data.</p>
<p>The second method for adding keywords requires a bit of theme editing.  I first saw this technique on <a href="http://www.nathanrice.net/">Nathan Rice&#8217;s Blog</a>.  I suggest you read his entire series on how to do Wordpress SEO. This technique will add your tags as keywords.  If you are using good tags there is absolutely no reason you shouldn&#8217;t use them as keywords.  If you are using a not so good program to autotag like simple tags, you should avoid this method as it could cause google to think you are keyword stuffing. (Stuffing equals reduced pagerank) However if you use an intelligent tagging plugin that uses semantic tags, like Calaise archive or autotagger or my favorite Tagaroo you are in good shape.  Simply paste the keywords you got from Wordsfinder into the tag area and away you go.<span id="more-152"></span></p>
<p>This is where the theme editing needs to be done.<br />
In the header.php  add this below the title tags &lt;title&gt;&lt;/title&gt;<br />
<textarea cols="35" rows="3">&lt;br /&gt; &lt;?php if (is_single() || is_page() ) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;&lt;br /&gt; &lt;meta name=&#8221;description&#8221; content=&#8221;&lt;?php the_excerpt_rss(); ?&gt;&#8221; /&gt;&lt;br /&gt; &lt;?php csv_tags(); ?&gt;&lt;br /&gt; &lt;?php endwhile; endif; elseif(is_home()) : ?&gt;&lt;br /&gt; &lt;meta name=&#8221;description&#8221; content=&#8221;&lt;?php bloginfo(&#8216;description&#8217;); ?&gt;&#8221; /&gt;&lt;br /&gt; &lt;?php endif; ?&gt;&lt;br /&gt; </textarea></p>
<p>In your functions.php add the following in the line above ?&gt;</p>
<p><textarea cols="35" rows="3">function csv_tags() {&lt;br /&gt;     $posttags = get_the_tags();&lt;br /&gt;     foreach((array)$posttags as $tag) {&lt;br /&gt;         $csv_tags .= $tag-&gt;name . &#8216;,&#8217;;&lt;br /&gt;     }&lt;br /&gt;     echo &#8216;&lt;meta name=&#8221;keywords&#8221; content=&#8221;&#8216;.$csv_tags.&#8217;&#8221; /&gt;&#8217;;&lt;br /&gt; }&lt;br /&gt; </textarea></p>
<p>Before undertaking this step I really reccomend you read <a href="http://www.nathanrice.net/blog/ultimate-guide-to-wordpress-seo-meta-keywords/">Nathan&#8217;s fine article</a> on the hows and whys of meta keywords.</p>
<p>Post 73 of 100 of <a href="”http://www.bradstinyworld.com”">Brad’s Tiny World</a> Scribefire Challenge.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/seo/keywords-in-your-post/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

