arkadaşlar functions.php dosyası içerisinde seo olrak birşeyler geçiyor kodları paylaşayım.. acaba seo varda ben mi kullanmıyorum ki..

function seo($str) {
        $str=strtolower($str);
        
        $find = array("'",',', ' ', '>', '<', '?', '.', '"', '&#039', ';', '#' ,'&amp','/','=','-','+',':','@',
        'Ş','ş','Ö','ö','Ğ','ğ','Ç','ç','İ','ı','Ü','ü');
        $replace = array('','_', '_','_','_','_','_','_','_','_','_','_','_','_','_','_','_','_',
        's','s','o','o','g','g','c','c','i','i','u','u');
        $str = str_replace($find,$replace,$str);
        
        $str = str_replace("_","-",$str);
        return $str;
    }