<?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>Design strike &#187; wordpress seo</title>
	<atom:link href="http://designstrike.net/tag/wordpress-seo/feed" rel="self" type="application/rss+xml" />
	<link>http://designstrike.net</link>
	<description>Striking with the latest design info</description>
	<lastBuildDate>Fri, 18 Jun 2010 13:51:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to set up SEO metadata inside WordPress without the use of a plugin</title>
		<link>http://designstrike.net/wordpress/how-to-set-up-seo-metadata-inside-wordpress-without-the-use-of-a-plugin.html</link>
		<comments>http://designstrike.net/wordpress/how-to-set-up-seo-metadata-inside-wordpress-without-the-use-of-a-plugin.html#comments</comments>
		<pubDate>Sat, 12 Sep 2009 05:00:14 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[seo metadata]]></category>
		<category><![CDATA[wordpress seo]]></category>

		<guid isPermaLink="false">http://designstrike.net/?p=846</guid>
		<description><![CDATA[Everybody loves SEO, and everybody loves to have a well read blog or website. In the digital world having a well read blog is not all about writing cool, original and unique stuff. You need to make a sacrifice to the all mighty god known as Google, and that sacrifice is known as SEO. Here [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignstrike.net%2Fwordpress%2Fhow-to-set-up-seo-metadata-inside-wordpress-without-the-use-of-a-plugin.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdesignstrike.net%2Fwordpress%2Fhow-to-set-up-seo-metadata-inside-wordpress-without-the-use-of-a-plugin.html&amp;source=designstrike&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Everybody loves SEO, and everybody loves to have a well read blog or website. In the digital world having a well read blog is not all about writing cool, original and unique stuff. You need to make a sacrifice to the all mighty god known as Google, and that sacrifice is known as SEO.</p>
<p><img src="http://designstrike.net/wp-content/uploads/2009/09/Wp-seo-thumb.png" alt="Wp-seo-thumb" title="Wp-seo-thumb" width="500" height="250" class="alignnone size-full wp-image-855" /></p>
<p>Here is how you can set up some really nice features inside your wordpress blogs, whouth the use of plugins, just only clean harmful code. These tips can make the difference between your blog and your neighbours blog, so follow them closely.<br />
<span id="more-846"></span><br />
To understand the basic of search engine optimization you need 3 things: a post description, post keywords and some very nice URL set up.</p>
<p><H2>How to embed a meta description inside a wordpress template</h2>
<p>First open up your header.php file inside your theme folder, and just after the title tag insert this variable:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;
&lt;meta name='description&quot; content=&quot;
    <span style="color: #000000; font-weight: bold;">&lt;?</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>is_category<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> is_archive<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">echo</span> the_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;This is my default description to use if a post or page doesn't have an excerpt&quot;</span><span style="color: #339933;">;</span>
     <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
    &quot; /&gt;</pre></div></div>

<p>This is the description mini-loop, to use simply write a description in the post excerpt inside the post creation section of the wordpress administration.</p>
<h2>How to embedd the keywords inside a wordpress theme</h2>
<p>Open up your header.php and after the meta description tag we reentered before just paste in this code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;meta name=&quot;keywords&quot; content=&quot;<span style="color: #000000; font-weight: bold;">&lt;?</span><span style="color: #b1b100;">echo</span> single_cat_title<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>, <span style="color: #000000; font-weight: bold;">&lt;?</span><span style="color: #b1b100;">echo</span>     single_post_title<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;</pre></div></div>

<p>This will insert the category title and the single post title as keywords for your post so make shure you write relevant stuff in the two titles.</p>
<h2>How to set up search engine friendly URL-s in WordPress</h2>
<p>Just make your way inside the wordpress administration -> Settings -> Permalink and insert this variable inside the custom structure field: <strong>/%category%/%postname%.html</strong></p>
<p>And you have a decent SEO optimized blog. Just make shure to write relevant and unique stuff inside the excerpt and the title sections. The rest is up to you.</p>
<h2>Want to automate things?</h2>
<p>Just <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" rel='nofollow'>download All in one SEO pack</a> and let the work be done for you.</p>
<h1>Reader Feedback</h1>
<p><strong>Quote from Cosmin</strong><br />
<em>I would add to the permalink structure: if you don’t really care about using categories in your URL, you can disregard the %category%</p>
<p>Why?</p>
<p>Having %category%/%postname%.html basically buries your page in one folder (or more, if you’re in a subcatecory) : example.com/category/pagetitle.html</p>
<p>Google for example will consider links that are closer to the root of the site to be more important : example.com/pagetitle.html</p>
<p>I’ve seen this done on major blogs and it seems to help. Of course, this is not a decisive factor – just an idea that in some cases I’ve seen to help.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://designstrike.net/wordpress/how-to-set-up-seo-metadata-inside-wordpress-without-the-use-of-a-plugin.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
