开发者 |
BArS
SergeyBiryukov karevn webvitaly Atrax |
---|---|
更新时间 | 2020年7月22日 04:03 |
捐献地址: | 去捐款 |
PHP版本: | 5.6 及以上 |
WordPress版本: | 4.9.8 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
ukr-to-lat
folder to the /wp-content/plugins/
directory.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');
None