<?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: Periods in Titles</title>
	<atom:link href="http://txfx.net/wordpress-plugins/periods-in-titles/feed/" rel="self" type="application/rss+xml" />
	<link>http://txfx.net</link>
	<description>Mark Jaquith&#039;s blog about capitalism, freedom, WordPress, the web, and personal topics</description>
	<lastBuildDate>Fri, 30 Sep 2011 09:11:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: ครีมหมอจุฬา</title>
		<link>http://txfx.net/wordpress-plugins/periods-in-titles/comment-page-1/#comment-754847</link>
		<dc:creator>ครีมหมอจุฬา</dc:creator>
		<pubDate>Mon, 24 Jan 2011 04:14:04 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/periods-in-titles/#comment-754847</guid>
		<description>Thank any comment idea.</description>
		<content:encoded><![CDATA[<p>Thank any comment idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Plugins Database &#187; Plugin Details &#187; Periods in Title</title>
		<link>http://txfx.net/wordpress-plugins/periods-in-titles/comment-page-1/#comment-584710</link>
		<dc:creator>WordPress Plugins Database &#187; Plugin Details &#187; Periods in Title</dc:creator>
		<pubDate>Wed, 02 Apr 2008 04:18:54 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/periods-in-titles/#comment-584710</guid>
		<description>[...] Visit [...]</description>
		<content:encoded><![CDATA[<p>[...] Visit [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Davidson - Mike Industries Now Powered By WordPress</title>
		<link>http://txfx.net/wordpress-plugins/periods-in-titles/comment-page-1/#comment-580351</link>
		<dc:creator>Mike Davidson - Mike Industries Now Powered By WordPress</dc:creator>
		<pubDate>Mon, 31 Mar 2008 04:10:17 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/periods-in-titles/#comment-580351</guid>
		<description>[...] Periods in Titles - So that I can use periods in my URLs [...]</description>
		<content:encoded><![CDATA[<p>[...] Periods in Titles &#8211; So that I can use periods in my URLs [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathon</title>
		<link>http://txfx.net/wordpress-plugins/periods-in-titles/comment-page-1/#comment-480511</link>
		<dc:creator>Jonathon</dc:creator>
		<pubDate>Fri, 22 Feb 2008 07:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/periods-in-titles/#comment-480511</guid>
		<description>Would periods in titles cause problems for feeds or search engines or other [machine programs]?</description>
		<content:encoded><![CDATA[<p>Would periods in titles cause problems for feeds or search engines or other [machine programs]?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://txfx.net/wordpress-plugins/periods-in-titles/comment-page-1/#comment-303612</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Thu, 03 Jan 2008 02:05:20 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/periods-in-titles/#comment-303612</guid>
		<description>Also, these lines:

~~
$title = str_replace(&#039;-.-&#039;, &#039;.&#039;, $title);
$title = str_replace(&#039;-.&#039;, &#039;.&#039;, $title);
$title = str_replace(&#039;.-&#039;, &#039;.&#039;, $title);
~~

With this?

~~
$title = str_replace(array(&#039;-.-&#039;, &#039;-.&#039;, &#039;.-&#039; ), &#039;.&#039;, $title);
~~</description>
		<content:encoded><![CDATA[<p>Also, these lines:</p>
<p>~~<br />
$title = str_replace(&#8216;-.-&#8217;, &#8216;.&#8217;, $title);<br />
$title = str_replace(&#8216;-.&#8217;, &#8216;.&#8217;, $title);<br />
$title = str_replace(&#8216;.-&#8217;, &#8216;.&#8217;, $title);<br />
~~</p>
<p>With this?</p>
<p>~~<br />
$title = str_replace(array(&#8216;-.-&#8217;, &#8216;-.&#8217;, &#8216;.-&#8217; ), &#8216;.&#8217;, $title);<br />
~~</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://txfx.net/wordpress-plugins/periods-in-titles/comment-page-1/#comment-303603</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Thu, 03 Jan 2008 02:01:16 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/periods-in-titles/#comment-303603</guid>
		<description>Could these lines:

~~
$title = preg_replace(&#039;&#124;([^.])\.$&#124;&#039;, &#039;$1&#039;, $title);
$title = trim($title, &#039;-&#039;); // yes, again
~~

Be replaced with this?

~~
$title = trim($title, &#039;.-&#039;);
~~</description>
		<content:encoded><![CDATA[<p>Could these lines:</p>
<p>~~<br />
$title = preg_replace(&#8216;|([^.]).$|&#8217;, &#8216;$1&#8242;, $title);<br />
$title = trim($title, &#8216;-&#8217;); // yes, again<br />
~~</p>
<p>Be replaced with this?</p>
<p>~~<br />
$title = trim($title, &#8216;.-&#8217;);<br />
~~</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chip</title>
		<link>http://txfx.net/wordpress-plugins/periods-in-titles/comment-page-1/#comment-194190</link>
		<dc:creator>Chip</dc:creator>
		<pubDate>Thu, 13 Sep 2007 09:38:40 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/periods-in-titles/#comment-194190</guid>
		<description>What if I want to make an article look like article-name.php to match my older site structure?</description>
		<content:encoded><![CDATA[<p>What if I want to make an article look like article-name.php to match my older site structure?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blog of BigSmoke &#187; Allowing dots in Wordpress post slugs</title>
		<link>http://txfx.net/wordpress-plugins/periods-in-titles/comment-page-1/#comment-192997</link>
		<dc:creator>Blog of BigSmoke &#187; Allowing dots in Wordpress post slugs</dc:creator>
		<pubDate>Mon, 10 Sep 2007 16:07:05 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/periods-in-titles/#comment-192997</guid>
		<description>&lt;!--%kramer-ref-pre%--&gt;[...] I was once again annoyed by the fact that WordPress doesn&#8217;t allow dots in post slugs. Luckily, this time I hadn&#8217;t published the post with a botched URL yet. (I don&#8217;t like changing permalinks because they&#8217;re meant to be permanent; cool URLs don&#8217;t change.) A quick googling pointed me to a post in the WordPress support forum with a reference to the Periods in Titles WordPress plugin. [...]&lt;!--%kramer-ref-post%--&gt;</description>
		<content:encoded><![CDATA[<p><!--%kramer-ref-pre%-->[...] I was once again annoyed by the fact that WordPress doesn&#8217;t allow dots in post slugs. Luckily, this time I hadn&#8217;t published the post with a botched URL yet. (I don&#8217;t like changing permalinks because they&#8217;re meant to be permanent; cool URLs don&#8217;t change.) A quick googling pointed me to a post in the WordPress support forum with a reference to the Periods in Titles WordPress plugin. [...]<!--%kramer-ref-post%--></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: indir</title>
		<link>http://txfx.net/wordpress-plugins/periods-in-titles/comment-page-1/#comment-180805</link>
		<dc:creator>indir</dc:creator>
		<pubDate>Wed, 08 Aug 2007 22:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/periods-in-titles/#comment-180805</guid>
		<description>Would this plug-in make it more or less search engine friendly?</description>
		<content:encoded><![CDATA[<p>Would this plug-in make it more or less search engine friendly?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress Period&#8217;s in Title - 198.1</title>
		<link>http://txfx.net/wordpress-plugins/periods-in-titles/comment-page-1/#comment-105820</link>
		<dc:creator>Wordpress Period&#8217;s in Title - 198.1</dc:creator>
		<pubDate>Tue, 13 Mar 2007 13:06:20 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/periods-in-titles/#comment-105820</guid>
		<description>[...] In my last post, I tried to title it 198.1. Wordpress made the post slug 1981, but when I clicked on the post title, I got a 404. A quick google search yielded a plugin to fix this. [...]</description>
		<content:encoded><![CDATA[<p>[...] In my last post, I tried to title it 198.1. WordPress made the post slug 1981, but when I clicked on the post title, I got a 404. A quick google search yielded a plugin to fix this. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

