이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Cyr to Lat enhanced

설명

Converts Cyrillic and Georgian characters in post, page and term slugs to Latin characters. Useful for creating human-readable URLs.

This plugin is a fork of cyr2lat plugin.

Features

  • Automatically converts existing post, page and term slugs on activation
  • Saves existing post and page permalinks integrity
  • Performs transliteration of attachment file names
  • Includes Russian, Belarusian, Ukrainian, Bulgarian and Macedonian characters
  • Transliteration table can be customized without editing the plugin itself

Based on the original Rus-To-Lat plugin by Anton Skorobogatov.

설치

  1. Upload cyr3lat folder to the /wp-content/plugins/ directory.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.
  3. Make sure your system has iconv set up right, or iconv is not installed at all. If you have any problems (trimmed slugs, strange characters, question marks) – please ask for support.

FAQ

How can I define my own substitutions?

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');

후기

2018년 12월 10일
Works well on any website I've uploaded to - maybe more than 30-40! Never caused me problems. Thank you!
2018년 6월 2일
Сначала выдал ошибку: Fatal error: Cannot redeclare ctl_sanitize_title() (previously declared in /home/**/wp-content/plugins/cyr2lat/cyr-to-lat.php:11) in /home/**/wp-content/plugins/cyr3lat/cyr-to-lat.php on line 84 Понял, что был активирован cyr to lat обычный. Его отключил - всё работает. Буду тестировать.
2018년 2월 1일
Самая отягощающая проблема, это отсутсвие редиректа с бывших кириллических страниц на новые. А этих страниц оказывается очень много.
2018년 1월 19일
Не рекомендую к установке, полгода боролся с вирусами на сайте, оказалось что это плагин старый и дырявый. Я не говорю что в данном плагине вирусы, я о том что в нем имеются уязвимости.
모든 49 평가 읽기

기여자 & 개발자

“Cyr to Lat enhanced”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Cyr to Lat enhanced”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

3.7

  • added prepare() for every SQL query

3.6

  • added esc_sql for SQL query

3.5

  • Removed quotes from table which added extra dashes

3.4

  • Fixes for Ukrainian characters

3.3.3

  • Bugfix: posts of status “future” were not affected

3.3.2

  • Added support for European diacritics

3.3.1

  • Added Georgian transliteration table
  • A problem with some letters causing apostrophes in slugs was resolved

3.3

3.2

  • Added transliteration when publishing via XML-RPC
  • Fixed Invalid Taxonomy error when viewing the most used tags

3.1

  • Fixed transliteration when saving a draft

3.0

  • Added automatic conversion of existing post, page and term slugs
  • Added saving of existing post and page permalinks integrity
  • Added transliteration of attachment file names
  • Adjusted transliteration table in accordance with ISO 9 standard
  • Included Russian, Belarusian, Ukrainian, Bulgarian and Macedonian characters
  • Added filter for the transliteration table

2.1

  • Optimized filter call

2.0

  • Added check for existing terms

1.0.1

  • Updated description

1.0

  • Initial release