Converts Ukrainian characters in post, page and term slugs to Latin characters.
Converts Ukrainian characters in post, page and term slugs to Latin characters. Useful for creating human-readable URLs.
Transliteration based on http://ukrlit.org/transliteratsiia
Based on the original Rus-To-Lat plugin by Anton Skorobogatov and Cyr-To-Lat by SergeyBiryukov, karevn, webvitaly.
ukr-to-lat
folder to the /wp-content/plugins/
directory.You can translate Ukr-To-Lat on translate.wordpress.org.
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');
To prevent losing you SEO position you can use plugin LCH (https://wordpress.org/plugins/link-changer-htaccess-for-better-seo/) to prepare redirect from old links to new one.