Periods in Titles
About
Periods in Titles allows you to put periods in your post and category URL slugs. e.g. example.com/2006/10/this.is.a.post.slug/
Download
Usage
Download by clicking the link above then clicking the “Download” button at the top of the screen. Upload to your /wp-content/plugins/ directory and activate the plugin in your WordPress admin.


Would this plug-in make it more or less search engine friendly?
Would this plug-in make it more or less search engine friendly?
thanks for desing
Site design, coding and maintenance ?
yes for desing
yonja yesss?
Is there an asp version available?
I do not know any about php
I love this code,thanks
What if I want to make an article look like article-name.php to match my older site structure?
thanks
Could these lines:
~~
$title = preg_replace(’|([^.]).$|’, ‘$1′, $title);
$title = trim($title, ‘-’); // yes, again
~~
Be replaced with this?
~~
$title = trim($title, ‘.-’);
~~
Also, these lines:
~~
$title = str_replace(’-.-’, ‘.’, $title);
$title = str_replace(’-.’, ‘.’, $title);
$title = str_replace(’.-’, ‘.’, $title);
~~
With this?
~~
$title = str_replace(array(’-.-’, ‘-.’, ‘.-’ ), ‘.’, $title);
~~
Would periods in titles cause problems for feeds or search engines or other [machine programs]?