<?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: Optimal Title Tag Code For WordPress</title>
	<atom:link href="http://performancing.com/optimal_title_tag_code_for_wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://performancing.com/optimal_title_tag_code_for_wordpress/</link>
	<description>Helping Bloggers Succeed</description>
	<lastBuildDate>Wed, 09 Nov 2011 05:59:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Mike</title>
		<link>http://performancing.com/optimal_title_tag_code_for_wordpress/comment-page-1/#comment-38477</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sat, 21 May 2011 18:25:27 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2095#comment-38477</guid>
		<description>I agree that the title tag is the most important issue in on page SEO without a doubt. But how do you feel about all this social stuff everyone are talking about?</description>
		<content:encoded><![CDATA[<p>I agree that the title tag is the most important issue in on page SEO without a doubt. But how do you feel about all this social stuff everyone are talking about?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terry</title>
		<link>http://performancing.com/optimal_title_tag_code_for_wordpress/comment-page-1/#comment-33816</link>
		<dc:creator>Terry</dc:creator>
		<pubDate>Thu, 08 Oct 2009 10:11:56 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2095#comment-33816</guid>
		<description>these tips fit all, not just WordPress
&lt;a href=&quot;http://www.forsey.uk.net&quot; title=&quot;Terry Forsey&quot; rel=&quot;nofollow&quot;&gt;Terry Forsey&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>these tips fit all, not just WordPress<br />
<a href="http://www.forsey.uk.net" title="Terry Forsey" rel="nofollow">Terry Forsey</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Best of Performancing : Performancing</title>
		<link>http://performancing.com/optimal_title_tag_code_for_wordpress/comment-page-1/#comment-32589</link>
		<dc:creator>Best of Performancing : Performancing</dc:creator>
		<pubDate>Sun, 09 Aug 2009 21:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2095#comment-32589</guid>
		<description>[...] Optimal Meta Description Tag Code for WordPress &#8211; Ryan CaldwellTakeaway: [...]</description>
		<content:encoded><![CDATA[<p>[...] Optimal Meta Description Tag Code for WordPress &#8211; Ryan CaldwellTakeaway: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NoticiasElegidas</title>
		<link>http://performancing.com/optimal_title_tag_code_for_wordpress/comment-page-1/#comment-14651</link>
		<dc:creator>NoticiasElegidas</dc:creator>
		<pubDate>Tue, 30 Dec 2008 17:24:57 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2095#comment-14651</guid>
		<description>Thanks Ahmed for the explanation and example of the title function. I&#039;ve searched everywhere before the code you post, I was looking for something like that since WP don&#039;t seems to manage very well the default titles...

Now all works like a charm.

Thanks to the post and one special to Achmed!
Regards</description>
		<content:encoded><![CDATA[<p>Thanks Ahmed for the explanation and example of the title function. I&#8217;ve searched everywhere before the code you post, I was looking for something like that since WP don&#8217;t seems to manage very well the default titles&#8230;</p>
<p>Now all works like a charm.</p>
<p>Thanks to the post and one special to Achmed!<br />
Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hellogiridotcom</title>
		<link>http://performancing.com/optimal_title_tag_code_for_wordpress/comment-page-1/#comment-14645</link>
		<dc:creator>hellogiridotcom</dc:creator>
		<pubDate>Mon, 30 Jul 2007 06:50:21 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2095#comment-14645</guid>
		<description>why all are manipulating and playing with Code? Most easy way is to use all-in-one-seo-pack plugin, just install it in one minute. you can check my blog title result in google </description>
		<content:encoded><![CDATA[<p>why all are manipulating and playing with Code? Most easy way is to use all-in-one-seo-pack plugin, just install it in one minute. you can check my blog title result in google</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahmed Bilal</title>
		<link>http://performancing.com/optimal_title_tag_code_for_wordpress/comment-page-1/#comment-14644</link>
		<dc:creator>Ahmed Bilal</dc:creator>
		<pubDate>Mon, 30 Jul 2007 05:47:57 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2095#comment-14644</guid>
		<description>&lt;code&gt;
 &lt;title&gt;&lt;?php
         if(is_home()) {
            bloginfo(&#039;title&#039;);
            echo &#039; - &#039;;
            bloginfo(&#039;description&#039;);
         } else{
            wp_title(&#039;&#039;);
            echo &#039; &#124; &#039;;
            bloginfo(&#039;title&#039;);
            echo &#039; - &#039;;
            bloginfo(&#039;description&#039;);            
         }
      ?&gt;&lt;/title&gt;
&lt;/code&gt;

The above is a simplified version of the WP title code that shows your page&#039;s title tag in this order:

&lt;em&gt;Blog Name - Blog Description&lt;/em&gt; (Home page)
&lt;em&gt;Page Name - Blog Name - Blog Description&lt;/em&gt; (All other pages) 

There&#039;s a very specific reason why I use that configuration on one of my blogs, and each segment has it&#039;s purpose SEO-wise.

Mainly though, I agree with Ryan&#039;s statement that:

&lt;em&gt;It is my view that by putting your blog title in the title tag of every post, you dilute the SEO value of your article&#039;s title.&lt;/em&gt;

But I would add that search engines, when placing a value on a particular link, also evaluate the page that link is coming from, and since title tags are one of the most important components of a page&#039;s SEO, it stands to reason (for me) that the keywords in a page&#039;s title tag will have an impact on the &#039;link juice&#039; any link from that page sends out.

So if your blog name has your main keywords, then include it in your title tag. If it doesn&#039;t, consider the branding impact and add it nonetheless. If your blog description has your main keywords (it should), add it to the title tag.

Usually you should have your title tags as &#039;focused&#039; as possible. But for some search phrases, just having all your site&#039;s pages include that search term can take you from nowhere in the SERPs to #3 in Google (true story). So it works, if you make it work for you.</description>
		<content:encoded><![CDATA[<p><code><br />
 <title>< ?php<br />
         if(is_home()) {<br />
            bloginfo('title');<br />
            echo ' - ';<br />
            bloginfo('description');<br />
         } else{<br />
            wp_title('');<br />
            echo ' | ';<br />
            bloginfo('title');<br />
            echo ' - ';<br />
            bloginfo('description');<br />
         }<br />
      ?></title><br />
</code></p>
<p>The above is a simplified version of the WP title code that shows your page&#8217;s title tag in this order:</p>
<p><em>Blog Name &#8211; Blog Description</em> (Home page)<br />
<em>Page Name &#8211; Blog Name &#8211; Blog Description</em> (All other pages) </p>
<p>There&#8217;s a very specific reason why I use that configuration on one of my blogs, and each segment has it&#8217;s purpose SEO-wise.</p>
<p>Mainly though, I agree with Ryan&#8217;s statement that:</p>
<p><em>It is my view that by putting your blog title in the title tag of every post, you dilute the SEO value of your article&#8217;s title.</em></p>
<p>But I would add that search engines, when placing a value on a particular link, also evaluate the page that link is coming from, and since title tags are one of the most important components of a page&#8217;s SEO, it stands to reason (for me) that the keywords in a page&#8217;s title tag will have an impact on the &#8216;link juice&#8217; any link from that page sends out.</p>
<p>So if your blog name has your main keywords, then include it in your title tag. If it doesn&#8217;t, consider the branding impact and add it nonetheless. If your blog description has your main keywords (it should), add it to the title tag.</p>
<p>Usually you should have your title tags as &#8216;focused&#8217; as possible. But for some search phrases, just having all your site&#8217;s pages include that search term can take you from nowhere in the SERPs to #3 in Google (true story). So it works, if you make it work for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Caldwell</title>
		<link>http://performancing.com/optimal_title_tag_code_for_wordpress/comment-page-1/#comment-14648</link>
		<dc:creator>Ryan Caldwell</dc:creator>
		<pubDate>Sun, 29 Jul 2007 14:19:11 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2095#comment-14648</guid>
		<description>if your site name is keyword rich, there is always the possibility that the post-title + site-title combination will create interesting, maybe even powerfully reinforcing phrases.

For example, on my blog One Big Maine which is a blog about Maine.  Chances are that every blog post is somehow related to Maine.  So it could be advantageous to leave the site title up *after* the blog post.

However, on a site like RideLust (a car blog) - the title does nothing to help with SEO and SERPS.

 </description>
		<content:encoded><![CDATA[<p>if your site name is keyword rich, there is always the possibility that the post-title + site-title combination will create interesting, maybe even powerfully reinforcing phrases.</p>
<p>For example, on my blog One Big Maine which is a blog about Maine.  Chances are that every blog post is somehow related to Maine.  So it could be advantageous to leave the site title up *after* the blog post.</p>
<p>However, on a site like RideLust (a car blog) &#8211; the title does nothing to help with SEO and SERPS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Caldwell</title>
		<link>http://performancing.com/optimal_title_tag_code_for_wordpress/comment-page-1/#comment-14647</link>
		<dc:creator>Ryan Caldwell</dc:creator>
		<pubDate>Sun, 29 Jul 2007 14:12:19 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2095#comment-14647</guid>
		<description>chuck,
the cutline title tag (above) became famous, in some part, because it was the first major theme to put the post title first.  </description>
		<content:encoded><![CDATA[<p>chuck,<br />
the cutline title tag (above) became famous, in some part, because it was the first major theme to put the post title first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Caldwell</title>
		<link>http://performancing.com/optimal_title_tag_code_for_wordpress/comment-page-1/#comment-14646</link>
		<dc:creator>Ryan Caldwell</dc:creator>
		<pubDate>Sun, 29 Jul 2007 14:10:57 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2095#comment-14646</guid>
		<description>eTech media...why do you think it&#039;s funny?  The authors of Performancing, between them, over 100 WordPress blogs.  Doesn&#039;t it make perfect sense that we&#039;d talk about a blogging platform that we use?</description>
		<content:encoded><![CDATA[<p>eTech media&#8230;why do you think it&#8217;s funny?  The authors of Performancing, between them, over 100 WordPress blogs.  Doesn&#8217;t it make perfect sense that we&#8217;d talk about a blogging platform that we use?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chuck232</title>
		<link>http://performancing.com/optimal_title_tag_code_for_wordpress/comment-page-1/#comment-14650</link>
		<dc:creator>chuck232</dc:creator>
		<pubDate>Sun, 29 Jul 2007 13:59:53 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2095#comment-14650</guid>
		<description>Hrm, interesting subject - while the site&#039;s name may dilute the value of the article&#039;s title, would there not be the opposite effect in some cases - if you&#039;ve built a strong brand around your site&#039;s name, I presume that would reflect well in search engines. (Take that with a grain of salt - I&#039;m not terribly familiar with the intricacies of SEO.)

I think what deserves more attention is the order in which they appear in the title. Most of the themes I&#039;ve seen, for WordPress at least, put the title of the site before the title of the article. In fact, the way to reverse their order is not as straightforward as it perhaps should be. Just logically speaking, I&#039;d think having the title of the article first and foremost should do something for search engine rankings of those articles.

&lt;a href=&quot;http://codex.wordpress.org/Template_Tags/wp_title#Separator_with_Blog_Name_and_Title_Reversed&quot;&gt;http://codex.wordpress.org/Template_Tags/wp_title#Separator_with_Blog_Name_and_Title_Reversed&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hrm, interesting subject &#8211; while the site&#8217;s name may dilute the value of the article&#8217;s title, would there not be the opposite effect in some cases &#8211; if you&#8217;ve built a strong brand around your site&#8217;s name, I presume that would reflect well in search engines. (Take that with a grain of salt &#8211; I&#8217;m not terribly familiar with the intricacies of SEO.)</p>
<p>I think what deserves more attention is the order in which they appear in the title. Most of the themes I&#8217;ve seen, for WordPress at least, put the title of the site before the title of the article. In fact, the way to reverse their order is not as straightforward as it perhaps should be. Just logically speaking, I&#8217;d think having the title of the article first and foremost should do something for search engine rankings of those articles.</p>
<p><a href="http://codex.wordpress.org/Template_Tags/wp_title#Separator_with_Blog_Name_and_Title_Reversed">http://codex.wordpress.org/Template_Tags/wp_title#Separator_with_Blog_Name_and_Title_Reversed</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eTech media</title>
		<link>http://performancing.com/optimal_title_tag_code_for_wordpress/comment-page-1/#comment-14649</link>
		<dc:creator>eTech media</dc:creator>
		<pubDate>Sun, 29 Jul 2007 13:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2095#comment-14649</guid>
		<description>So funny that this blog, made with Drupal, gives most of the time Wordpress tips.</description>
		<content:encoded><![CDATA[<p>So funny that this blog, made with Drupal, gives most of the time WordPress tips.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

