<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/1.5.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: WordPress SEO - Page Titles and Meta Tags</title>
	<link>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/</link>
	<description>Daily Diversions in Technology</description>
	<pubDate>Sat, 07 Nov 2009 19:30:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.2</generator>

	<item>
 		<title>Comment on WordPress SEO - Page Titles and Meta Tags by: t2dman</title>
		<link>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-389</link>
		<pubDate>Thu, 16 Mar 2006 02:04:39 +0000</pubDate>
		<guid>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-389</guid>
					<description>So where is the plugin??? What you describe looks exactly what is needed for a client</description>
		<content:encoded><![CDATA[	<p>So where is the plugin??? What you describe looks exactly what is needed for a client
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on WordPress SEO - Page Titles and Meta Tags by: wayne</title>
		<link>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-124</link>
		<pubDate>Thu, 13 Oct 2005 05:58:08 +0000</pubDate>
		<guid>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-124</guid>
					<description>Well, I guess you may need to escape the html tags. e.g., &amp;#60; becomes &amp;#38;lt;, &amp;#62; becomes &amp;#38;gt;. Otherwise, just email me.</description>
		<content:encoded><![CDATA[	<p>Well, I guess you may need to escape the html tags. e.g., &lt; becomes &amp;lt;, &gt; becomes &amp;gt;. Otherwise, just email me.
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on WordPress SEO - Page Titles and Meta Tags by: rs</title>
		<link>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-123</link>
		<pubDate>Tue, 11 Oct 2005 06:18:26 +0000</pubDate>
		<guid>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-123</guid>
					<description>Wayne -

My code lines seem to get edited out of my posts. If you tell me how to avoid this I will repost.

- Roger</description>
		<content:encoded><![CDATA[	<p>Wayne -</p>
	<p>My code lines seem to get edited out of my posts. If you tell me how to avoid this I will repost.</p>
	<p>- Roger
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on WordPress SEO - Page Titles and Meta Tags by: rs</title>
		<link>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-122</link>
		<pubDate>Tue, 11 Oct 2005 06:16:24 +0000</pubDate>
		<guid>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-122</guid>
					<description>Wayne -

Yes thanks Wayne all received and implemented. 

I did not use Optimal Title because I do not believe that including the name of the site in every  on every page of the site is good SEO. I have replaced  in the theme header with this   which uses the name of the site in the title only on the home page and uses the post title everywhere else. Much better for SEO!

Coupled with your script modifications Wayne this is the best SEO of wordpress headers possible - Thank you!

- Roger</description>
		<content:encoded><![CDATA[	<p>Wayne -</p>
	<p>Yes thanks Wayne all received and implemented. </p>
	<p>I did not use Optimal Title because I do not believe that including the name of the site in every  on every page of the site is good SEO. I have replaced  in the theme header with this   which uses the name of the site in the title only on the home page and uses the post title everywhere else. Much better for SEO!</p>
	<p>Coupled with your script modifications Wayne this is the best SEO of wordpress headers possible - Thank you!</p>
	<p>- Roger
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on WordPress SEO - Page Titles and Meta Tags by: wayne</title>
		<link>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-121</link>
		<pubDate>Mon, 10 Oct 2005 22:47:30 +0000</pubDate>
		<guid>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-121</guid>
					<description>chandu,
I would start simple and just get pieces of this stuff working first without worrying about putting it all in a separate file the way I have. However, I'll start by mentioning that technique. My external php file header_stuff.php is responsible for setting my page title and the two meta tags for keywords and descriptions.
If you place header_stuff.php inside your active theme directory, you include it like this:
&amp;#60;?php include (TEMPLATEPATH . '/header_stuff.php'); ?&amp;#62;
if you want to put it one level above into the wp-content/themes directory, use this:
&amp;#60;?php include (TEMPLATEPATH . '/../header_stuff.php'); ?&amp;#62;

First step, get Optimal Title working. Make sure you've installed the plugin and activated it, then replace the code in your Header.php file which outputs your page title with this code:

&amp;#60;title&amp;#62;&amp;#60;?php optimal_title('&amp;#38;raquo;') . bloginfo('name'); ?&amp;#62;&amp;#60;/title&amp;#62;

Then you can add the meta keywords using Jerome's plugin:

&amp;#60;meta name=&quot;keywords&quot; content=&quot;&amp;#60;?php echo get_the_keywords('','',',',false); ?&amp;#62;&quot; /&amp;#62;

The description you'll have to figure out on your own I guess since Jerome hasn't added that feature to the plugin yet. But I think you can use &lt;code&gt;the_excerpt();&lt;/code&gt; to ask WordPress for a post's excerpt (when you're on a page or post -- single -- page). So probably you'd put inside your meta description tag's content= property, something like this:
&amp;#60;?php the_excerpt(); &amp;#62;

see &lt;a href=&quot;http://codex.wordpress.org/Template_Tags/the_excerpt&quot; title=&quot;wordpress the_excerpt template tags&quot;&gt;WordPress Codex, the_template tag&lt;/a&gt; for more info on using that template tag.
 -wayne</description>
		<content:encoded><![CDATA[	<p>chandu,<br />
I would start simple and just get pieces of this stuff working first without worrying about putting it all in a separate file the way I have. However, I&#8217;ll start by mentioning that technique. My external php file header_stuff.php is responsible for setting my page title and the two meta tags for keywords and descriptions.<br />
If you place header_stuff.php inside your active theme directory, you include it like this:<br />
&lt;?php include (TEMPLATEPATH . &#8216;/header_stuff.php&#8217;); ?&gt;<br />
if you want to put it one level above into the wp-content/themes directory, use this:<br />
&lt;?php include (TEMPLATEPATH . &#8216;/../header_stuff.php&#8217;); ?&gt;</p>
	<p>First step, get Optimal Title working. Make sure you&#8217;ve installed the plugin and activated it, then replace the code in your Header.php file which outputs your page title with this code:</p>
	<p>&lt;title&gt;&lt;?php optimal_title(&#8217;&amp;raquo;&#8217;) . bloginfo(&#8217;name&#8217;); ?&gt;&lt;/title&gt;</p>
	<p>Then you can add the meta keywords using Jerome&#8217;s plugin:</p>
	<p>&lt;meta name=&#8221;keywords&#8221; content=&#8221;&lt;?php echo get_the_keywords('&#8217;,'&#8217;,',&#8217;,false); ?&gt;&#8221; /&gt;</p>
	<p>The description you&#8217;ll have to figure out on your own I guess since Jerome hasn&#8217;t added that feature to the plugin yet. But I think you can use <code>the_excerpt();</code> to ask WordPress for a post&#8217;s excerpt (when you&#8217;re on a page or post &#8212; single &#8212; page). So probably you&#8217;d put inside your meta description tag&#8217;s content= property, something like this:<br />
&lt;?php the_excerpt(); &gt;</p>
	<p>see <a href="http://codex.wordpress.org/Template_Tags/the_excerpt" title="wordpress the_excerpt template tags">WordPress Codex, the_template tag</a> for more info on using that template tag.<br />
 -wayne
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on WordPress SEO - Page Titles and Meta Tags by: chandu</title>
		<link>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-120</link>
		<pubDate>Mon, 10 Oct 2005 14:07:28 +0000</pubDate>
		<guid>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-120</guid>
					<description>Hi - Thanks for the fantastic technique using the existing plugins.

Where do we need to put this header_stuff.php created with the stuff above. In which place I need to include the header_stuff.php in my existing theme header  template. Do I need to replace everyting inside the 'header' tags.</description>
		<content:encoded><![CDATA[	<p>Hi - Thanks for the fantastic technique using the existing plugins.</p>
	<p>Where do we need to put this header_stuff.php created with the stuff above. In which place I need to include the header_stuff.php in my existing theme header  template. Do I need to replace everyting inside the &#8216;header&#8217; tags.
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on WordPress SEO - Page Titles and Meta Tags by: wayne</title>
		<link>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-119</link>
		<pubDate>Mon, 10 Oct 2005 00:56:57 +0000</pubDate>
		<guid>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-119</guid>
					<description>Roger, you should have received the plugin by email (unless it bounced back to me and I haven't seen the bounce yet). Your WordPress theme most likely has a file called header.php. Open that for editing and just under the &amp;#60;title&amp;#62;...&amp;#60;/title&amp;#38;gt tag, add that function call. 

Make sure you've enabled the modified Jerome's Keywords before adding that code to your header file. Otherwise (depending on the PHP settings) you'll get errors in your page since the function will not exist.</description>
		<content:encoded><![CDATA[	<p>Roger, you should have received the plugin by email (unless it bounced back to me and I haven&#8217;t seen the bounce yet). Your WordPress theme most likely has a file called header.php. Open that for editing and just under the &lt;title&gt;&#8230;&lt;/title&amp;gt tag, add that function call. </p>
	<p>Make sure you&#8217;ve enabled the modified Jerome&#8217;s Keywords before adding that code to your header file. Otherwise (depending on the PHP settings) you&#8217;ll get errors in your page since the function will not exist.
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on WordPress SEO - Page Titles and Meta Tags by: rs</title>
		<link>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-114</link>
		<pubDate>Sat, 08 Oct 2005 13:42:07 +0000</pubDate>
		<guid>http://www.acmetech.com/blog/2005/10/06/wordpress-seo-page-titles-and-meta-tags/#comment-114</guid>
					<description>Thank you very much Wayne! I seem to have got it all working and will test it out over the next few weeks. - Roger

PS I had to use  rather than  for some reason.</description>
		<content:encoded><![CDATA[	<p>Thank you very much Wayne! I seem to have got it all working and will test it out over the next few weeks. - Roger</p>
	<p>PS I had to use  rather than  for some reason.
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
