<?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"
	>
<channel>
	<title>Comments on: A WordPress Plugin for Title Case Capitalization</title>
	<atom:link href="http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/</link>
	<description>Ardamis is a tiny web design studio specializing in high-quality, handmade web sites.</description>
	<pubDate>Tue, 14 Oct 2008 20:49:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Oxonian</title>
		<link>http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/#comment-15193</link>
		<dc:creator>Oxonian</dc:creator>
		<pubDate>Sun, 25 May 2008 03:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2006/09/28/wordpress-plugin-for-uppercase-titles/#comment-15193</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ardamis</title>
		<link>http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/#comment-15192</link>
		<dc:creator>ardamis</dc:creator>
		<pubDate>Sun, 25 May 2008 03:27:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2006/09/28/wordpress-plugin-for-uppercase-titles/#comment-15192</guid>
		<description>Oxonian, edit the plugin to replace 

&lt;code&gt;ucwords($title)&lt;/code&gt;

with

&lt;code&gt;ucwords(strtolower($title))&lt;/code&gt;

Note the additional end parenthesis.  When you make this change to the plugin, you'll end up with 3 end parenthesis after $title.

This will convert all words to lowercase, then apply the capitalization.</description>
		<content:encoded><![CDATA[<p>Oxonian, edit the plugin to replace </p>
<p><code>ucwords($title)</code></p>
<p>with</p>
<p><code>ucwords(strtolower($title))</code></p>
<p>Note the additional end parenthesis.  When you make this change to the plugin, you&#8217;ll end up with 3 end parenthesis after $title.</p>
<p>This will convert all words to lowercase, then apply the capitalization.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oxonian</title>
		<link>http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/#comment-15189</link>
		<dc:creator>Oxonian</dc:creator>
		<pubDate>Sat, 24 May 2008 20:38:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2006/09/28/wordpress-plugin-for-uppercase-titles/#comment-15189</guid>
		<description>Thanks for creating this plugin.  Could you please indicate how to tweak the code so that the plugin will alter words written in all caps?  I tried inserting the 'ucwords(strtolower($title))' command in various places, but I don't know php and I couldn't get the tweaked plugin to work.</description>
		<content:encoded><![CDATA[<p>Thanks for creating this plugin.  Could you please indicate how to tweak the code so that the plugin will alter words written in all caps?  I tried inserting the &#8216;ucwords(strtolower($title))&#8217; command in various places, but I don&#8217;t know php and I couldn&#8217;t get the tweaked plugin to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ardamis</title>
		<link>http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/#comment-10166</link>
		<dc:creator>ardamis</dc:creator>
		<pubDate>Tue, 13 Nov 2007 06:53:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2006/09/28/wordpress-plugin-for-uppercase-titles/#comment-10166</guid>
		<description>You're getting that error because your server isn't using PHP5, and str_ireplace() is a PHP5 function.  The best solution would be to ask your host to update PHP, but I'll try to put together a version of the plugin for those people using PHP4 in the next few days.</description>
		<content:encoded><![CDATA[<p>You&#8217;re getting that error because your server isn&#8217;t using PHP5, and str_ireplace() is a PHP5 function.  The best solution would be to ask your host to update PHP, but I&#8217;ll try to put together a version of the plugin for those people using PHP4 in the next few days.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: clifton</title>
		<link>http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/#comment-10160</link>
		<dc:creator>clifton</dc:creator>
		<pubDate>Mon, 12 Nov 2007 08:16:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2006/09/28/wordpress-plugin-for-uppercase-titles/#comment-10160</guid>
		<description>Hi, Ardamis.  I dropped your plugin into the appropriate directory on my server and then tried to view my site again.  After doing so, I found the following message had replaced my site:  "Fatal error: Call to undefined function: str_ireplace() in /home/methaner/public_html/sicmagazine/wp-content/plugins/ardamis-titlecase.php on line 36"

Well, I deactivated the plugin and the site returned to a working state.  

My question:  am I retarded?

Next question: do I need to paste code into some file in addition to installing/activating your plug-in?

All I really want is to have control over how titles are displayed on my page.  Is this really asking so much?</description>
		<content:encoded><![CDATA[<p>Hi, Ardamis.  I dropped your plugin into the appropriate directory on my server and then tried to view my site again.  After doing so, I found the following message had replaced my site:  &#8220;Fatal error: Call to undefined function: str_ireplace() in /home/methaner/public_html/sicmagazine/wp-content/plugins/ardamis-titlecase.php on line 36&#8243;</p>
<p>Well, I deactivated the plugin and the site returned to a working state.  </p>
<p>My question:  am I retarded?</p>
<p>Next question: do I need to paste code into some file in addition to installing/activating your plug-in?</p>
<p>All I really want is to have control over how titles are displayed on my page.  Is this really asking so much?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ardamis</title>
		<link>http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/#comment-10123</link>
		<dc:creator>ardamis</dc:creator>
		<pubDate>Wed, 31 Oct 2007 16:48:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2006/09/28/wordpress-plugin-for-uppercase-titles/#comment-10123</guid>
		<description>Actually, CSS is rather limited when it comes to capitalization.

Suppose our heading is:

A Plugin for the Masses

This plugin will keep (or create) that capitalization by allowing certain small words to stay lowercase.  CSS cannot do this; it's an all or nothing situation.  For example, CSS { text-transform: capitalize; } would capitalize every word, generating:

A Plugin For The Masses

while CSS { text-transform: uppercase; } would generate:

A PLUGIN FOR THE MASSES

This plugin is for people who care about capitalization enough to realize CSS isn't capable of producing the desired results.</description>
		<content:encoded><![CDATA[<p>Actually, CSS is rather limited when it comes to capitalization.</p>
<p>Suppose our heading is:</p>
<p>A Plugin for the Masses</p>
<p>This plugin will keep (or create) that capitalization by allowing certain small words to stay lowercase.  CSS cannot do this; it&#8217;s an all or nothing situation.  For example, CSS { text-transform: capitalize; } would capitalize every word, generating:</p>
<p>A Plugin For The Masses</p>
<p>while CSS { text-transform: uppercase; } would generate:</p>
<p>A PLUGIN FOR THE MASSES</p>
<p>This plugin is for people who care about capitalization enough to realize CSS isn&#8217;t capable of producing the desired results.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Internet Marketing Blog</title>
		<link>http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/#comment-10122</link>
		<dc:creator>Internet Marketing Blog</dc:creator>
		<pubDate>Wed, 31 Oct 2007 16:02:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2006/09/28/wordpress-plugin-for-uppercase-titles/#comment-10122</guid>
		<description>You can do the same thing in your style sheet with text-transform:uppercase;</description>
		<content:encoded><![CDATA[<p>You can do the same thing in your style sheet with text-transform:uppercase;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2007-10-09</title>
		<link>http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/#comment-10033</link>
		<dc:creator>links for 2007-10-09</dc:creator>
		<pubDate>Tue, 09 Oct 2007 05:26:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2006/09/28/wordpress-plugin-for-uppercase-titles/#comment-10033</guid>
		<description>[...] A WordPress Plugin for Title Case Capitalization I wish it handled phrasal verbs, but you can&#8217;t get everything. (tags: Blog PHP Programming) [...]</description>
		<content:encoded><![CDATA[<p>[...] A WordPress Plugin for Title Case Capitalization I wish it handled phrasal verbs, but you can&#8217;t get everything. (tags: Blog PHP Programming) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ardamis</title>
		<link>http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/#comment-9100</link>
		<dc:creator>ardamis</dc:creator>
		<pubDate>Sun, 26 Aug 2007 00:54:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2006/09/28/wordpress-plugin-for-uppercase-titles/#comment-9100</guid>
		<description>Yes, the plugin will correctly capitalize only the first letter of a contraction.</description>
		<content:encoded><![CDATA[<p>Yes, the plugin will correctly capitalize only the first letter of a contraction.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shoutingloudly</title>
		<link>http://www.ardamis.com/2006/09/28/title-case-wordpress-plugin/#comment-9095</link>
		<dc:creator>shoutingloudly</dc:creator>
		<pubDate>Sat, 25 Aug 2007 21:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2006/09/28/wordpress-plugin-for-uppercase-titles/#comment-9095</guid>
		<description>Hi,

Does it handle contractions adequately? I'm so sick of headlines reading "Don'T", "Won'T", etc. that I'm about to manually remove the CSS capitalization from our stylesheet.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Does it handle contractions adequately? I&#8217;m so sick of headlines reading &#8220;Don&#8217;T&#8221;, &#8220;Won&#8217;T&#8221;, etc. that I&#8217;m about to manually remove the CSS capitalization from our stylesheet.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
