<?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>Rumah Abi News And Technology &#187; Meta Keyword</title>
	<atom:link href="http://rumahabi.com/tag/meta-keyword/feed" rel="self" type="application/rss+xml" />
	<link>http://rumahabi.com</link>
	<description>My Personal Blog About Current News, iPhone And Technology</description>
	<lastBuildDate>Mon, 26 Jul 2010 08:54:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<atom:link rel='hub' href='http://rumahabi.com/?pushpress=hub'/>
		<item>
		<title>SEO Your WordPress Description And Keyword Without Plugins</title>
		<link>http://rumahabi.com/seo-your-wordpress-description-and-keyword-without-plugins.html</link>
		<comments>http://rumahabi.com/seo-your-wordpress-description-and-keyword-without-plugins.html#comments</comments>
		<pubDate>Mon, 21 Dec 2009 19:42:07 +0000</pubDate>
		<dc:creator>Abi</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Meta Description]]></category>
		<category><![CDATA[Meta Keyword]]></category>
		<category><![CDATA[PHP Code]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Remove Plugins]]></category>
		<category><![CDATA[SEO Wordpress]]></category>

		<guid isPermaLink="false">http://rumahabi.com/?p=2169</guid>
		<description><![CDATA[<p><a href="http://rumahabi.com/seo-your-wordpress-description-and-keyword-without-plugins.html">SEO Your WordPress Description And Keyword Without Plugins</a> is a post from: <a href="http://rumahabi.com">SEO Blog And Technology</a></p>
SEO Your WordPress Description And Keyword Without Plugins is a post from: SEO Blog And Technology You can remove SEO plugins that are designed to optimize your meta description, keyword and to have canonical url feature to avoids duplicate content, the plugins that work that ways are All In One SEO Pack or Platinum SEO [...]


Related posts:<ol><li><a href='http://rumahabi.com/seo-your-category-with-description.html' rel='bookmark' title='Permanent Link: SEO Your WordPress Category With Description'>SEO Your WordPress Category With Description</a></li>
<li><a href='http://rumahabi.com/how-to-make-wordpress-theme-seo-friendly-theme.html' rel='bookmark' title='Permanent Link: How To Make WordPress Theme SEO Friendly Theme'>How To Make WordPress Theme SEO Friendly Theme</a></li>
<li><a href='http://rumahabi.com/increadible-seo-wordpress-plugins-i-use.html' rel='bookmark' title='Permanent Link: Incredible SEO WordPress Plugins I Use'>Incredible SEO WordPress Plugins I Use</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://rumahabi.com/seo-your-wordpress-description-and-keyword-without-plugins.html">SEO Your WordPress Description And Keyword Without Plugins</a> is a post from: <a href="http://rumahabi.com">SEO Blog And Technology</a></p>
<p>You can remove <a href="http://rumahabi.com/">SEO</a> plugins that are designed to optimize your meta description, keyword and to have canonical url feature to avoids duplicate content, the plugins that work that ways are All In One SEO Pack or Platinum SEO Pack, but we can have the same SEO even without using them and remove them from your plugin storage, by replacing their roles with PHP codes, why you want to do that? Well, WordPress will be working much better if it&#8217;s using less <a href="http://rumahabi.com/category/wordpress/wordpress-plugin">plugin</a><span id="more-2169"></span></p>
<p>Let see, we all know if using All In One SEO Pack as the result each of our page will have a unique description and keywords, they will help Google to identify our page and what is all about.</p>
<blockquote><p>How if we use PHP code to replace their role? That sounds better</p></blockquote>
<p>1. Ok now to have unique description you need to add the following PHP code inside Header.php (below title tag: &lt;title&gt; &lt;/title&gt;)<br />
<code><br />
&lt;meta name=&quot;description&quot; content=&quot;&lt;?php the_excerpt_rss(); ?&gt;&quot; /&gt;</code></p>
<p>Note: the above code will automatically fetch the lines within the Excerpt to use as description, thus you need to write description in the excerpt box:</p>
<p style="text-align: center;">
<img src="http://i954.photobucket.com/albums/ae24/okeseoblog/DescriptionOnExcerpt.jpg" alt="Describe Your Excerpt"></p>
<p>But if there&#8217;s no lines or description in the Excerpt, then there is no description, so if you want the code to fetch description whether there is description inside excerpt or not, replace:</p>
<p><code>&lt;?php the_content(); ?&gt;</code></p>
<p>With the following:</p>
<p><code>&lt;?php the_excerpt(); ?&gt;</code></p>
<p>The code will grab description from the first paragraph of yours even there is nothing inside your excerpt box</p>
<p>2. Now about unique keyword, what we need is &#8220;Tag&#8221; and turn it into keywords tag, well to have it, add the following code inside your Function.php:</p>
<p><code>function csv_tags() {<br />
	$posttags = get_the_tags();<br />
	foreach((array)$posttags as $tag) {<br />
		$csv_tags .= $tag-&gt;name . &#039;,&#039;;<br />
	}<br />
	echo &#039;&lt;meta name=&quot;keywords&quot; content=&quot;&#039;.$csv_tags.&#039;&quot; /&gt;&#039;;<br />
}<br />
</code></p>
<p>And then to call the keywords, add this code (put it below description tag), now:</p>
<p><code>&lt;?php csv_tags(); ?&gt;</code></p>
<p>So the whole codes will look like this:</p>
<p><code>&lt;title&gt;&lt;?php wp_title(&#039;&amp;laquo;&#039;, true, &#039;right&#039;); ?&gt; &lt;?php bloginfo(&#039;name&#039;); ?&gt;&lt;/title&gt;<br />
&lt;?php if (is_single() || is_page() ) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;<br />
&lt;meta name=&quot;description&quot; content=&quot;&lt;?php the_excerpt_rss(); ?&gt;&quot; /&gt;<br />
<strong>&lt;?php csv_tags(); ?&gt;</strong></code></p>
<p class="warning">So each of your page will have unique description and keyword now</p>
<p>3. Now about Canonical Url, just upgrade to <a href="http://rumahabi.com/wordpress-2-9-is-here-with-us-now.html">WordPress 2.9</a>, then you will have canonical url by default!</p>
<p class="note">You may be interested to read <a href="http://rumahabi.com/how-to-make-wordpress-theme-seo-friendly-theme.html">How To Make WordPress Theme SEO Friendly Theme</a></p>
<p>Hope the post helps and see you again in the next post</p>


<p>Related posts:<ol><li><a href='http://rumahabi.com/seo-your-category-with-description.html' rel='bookmark' title='Permanent Link: SEO Your WordPress Category With Description'>SEO Your WordPress Category With Description</a></li>
<li><a href='http://rumahabi.com/how-to-make-wordpress-theme-seo-friendly-theme.html' rel='bookmark' title='Permanent Link: How To Make WordPress Theme SEO Friendly Theme'>How To Make WordPress Theme SEO Friendly Theme</a></li>
<li><a href='http://rumahabi.com/increadible-seo-wordpress-plugins-i-use.html' rel='bookmark' title='Permanent Link: Incredible SEO WordPress Plugins I Use'>Incredible SEO WordPress Plugins I Use</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://rumahabi.com/seo-your-wordpress-description-and-keyword-without-plugins.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
