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.

I’ve spent a lot of time writing this code and supporting it. If you derive some benefit from this code, please consider showing your gratitute in a more tangible
way. Thanks!

I have received $0 this month for my coding efforts.

Donate with PayPalAmazon.com Wishlist


17 Responses to “Periods in Titles”

  1. webDressing |

    Would this plug-in make it more or less search engine friendly?

  2. indir |

    Would this plug-in make it more or less search engine friendly?

  3. youtube |

    thanks for desing

  4. indir |

    Site design, coding and maintenance ?

  5. Hunt |

    Is there an asp version available?
    I do not know any about php

  6. Soodex |

    I love this code,thanks

  7. Chip |

    What if I want to make an article look like article-name.php to match my older site structure?

  8. Bob |

    Could these lines:

    ~~
    $title = preg_replace(’|([^.]).$|’, ‘$1′, $title);
    $title = trim($title, ‘-’); // yes, again
    ~~

    Be replaced with this?

    ~~
    $title = trim($title, ‘.-’);
    ~~

  9. Bob |

    Also, these lines:

    ~~
    $title = str_replace(’-.-’, ‘.’, $title);
    $title = str_replace(’-.’, ‘.’, $title);
    $title = str_replace(’.-’, ‘.’, $title);
    ~~

    With this?

    ~~
    $title = str_replace(array(’-.-’, ‘-.’, ‘.-’ ), ‘.’, $title);
    ~~

  10. Jonathon |

    Would periods in titles cause problems for feeds or search engines or other [machine programs]?

Leave a Reply