function make_seo_name($title) {
return
preg_replace(
'/[^a-z0-9_-]/i'
,
''
, strtolower(str_replace(
' '
'-'
, trim($title))));
}