[EDIT] FILE: slugify.php
<?php function slugify($text) { $text = strtolower(trim($text)); $text = preg_replace('/[^a-z0-9]+/', '-', $text); return trim($text, '-'); } ?>
SAVE
CANCEL