Temanın yapımcısına bildirmen gerekiyor ama illa kendim yapacağım diyorsan (ki anladığım kadarıyla seo url konusunda sorun yaşıyorsun) aşağıdaki kodu slug linki oluşturan koddan önce çağırabilir veya onunla değiştirebilirsin.


/**
* string $text: target text content
* source: https://stackoverflow.com/a/2955878/6940144
*/
public static function slugify($text)
{
// replace non letter or digits by -
$text = preg_replace('~[^\pL\d]+~u', '-', $text);

// transliterate
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);

// remove unwanted characters
$text = preg_replace('~[^-\w]+~', '', $text);

// trim
$text = trim($text, '-');

// remove duplicate -
$text = preg_replace('~-+~', '-', $text);

// lowercase
$text = strtolower($text);

if (empty($text)) {
return 'n-a';
}

return $text;
}