Converts Cyrillic characters in post, page and term slugs to Latin characters.
Add this code to your theme's functions.php file:
function my_cyr_to_lat_table($ctl_table) {
$ctl_table['Ъ'] = 'U';
$ctl_table['ъ'] = 'u';
return $ctl_table;
}
add_filter('ctl_table', 'my_cyr_to_lat_table');
Requires: 2.3 or higher
Compatible up to: 3.1.4
Last Updated: 2010-8-26
Downloads: 34,357
Got something to say? Need help?