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

AutoConvert Greeklish Permalinks

설명

AutoConvert Greeklish Permalinks converts greek characters to latin in all permalinks. The plugin makes sure that every new permalink is in greeklish and offers the option to convert all the old links with greek characters to latin.

Features

  • Convert automaticly the permalink of every new post and term.
  • Convert all your older posts and terms with a click of a button.
  • Choose how dipthongs are converted.
  • Developed to be friendly to developers with WP-CLI support and filter to modify the converion.

스크린샷

  • As simple as that. Write your title, draft, schedule or publish your post and the permalink is set.
  • Need to convert your old permalinks? We have you covered! Go to Settings > Convert Greek Permalinks > Convert old posts/terms and change all your permalinks at once.
  • Now you have the option to choose how diphthongs are converted.

설치

  1. Install and activate your plugin like every other WordPress plugin.
  2. After installation the permalink of every new post will be converted to greeklish.
  3. You can adjust conversion and disable automatic conversion on ‘Settings’ > ‘Convert Greek Permalinks’.
  4. To convert old posts/terms, go to ‘Settings’ > ‘Convert Greek Permalinks’ > ‘Convert old posts/terms’, select the post types and taxonomies you want to convert and click the “Convert Permalinks” button.

FAQ

How do I install it?

After you install and activate your plugin like every other WordPress plugin, every new post permalink will be now converted to greeklish automatically.

Can I configure the conversion?

On Settings > Convert Greek Permalinks > Settings, you can also modify how the plugin converts the permalinks. Currently you can:

  • Enable or disable automatic conversion
  • Choose which post types and taxonomies you want to be affected by automatic conversion
  • Choose how the dipthongs will be converted

From version 3.4.0, the filter agp_convert_expressions has been added to allow you to make further changes.

function change_expressions( $expressions ) {
    // You can modify the rules of conversion
    $expressions['/[βΒ]/u'] = 'g';
    return $expressions;
}
add_filter('agp_convert_expressions', 'change_expressions' );

How do I convert old permalinks?

If you want to convert all your older permalinks, go to Settings > Convert Greek Permalinks > Convert old posts/terms , select the post types and taxonomies you want to convert and click the “Convert Permalinks” button.

Does it support WooCommerce?

Yes. It supports all custom post types or taxonomies, including Products, Product Categories and Product Tags of WooCommerce.

Does it support WP-CLI?

Yes! As of 3.1 version, wp-cli commands have been included. You can convert all your permalinks with wp agp convert or just check how many greek permalinks you have with wp agp check. Use wp help agp {command} to learn more about how to use them.

후기

2024년 4월 4일
Το χρησιμοποιώ αρκετά και νομίζω πως ήρθε ο καιρός να βάλω και εγώ τα αστέρια τα οποία αξίζει! Σε ευχαριστούμε πολύ!
2023년 9월 13일
Thank you for this useful plugin. P.S.: It will need to get up to date with the new WooCommerce tables aka HPOS - currently it's not compatible.
2023년 6월 5일
Πολύ καλό. Κάνει ακριβώς ότι λέει και βολεύει ειδικά για να διορθώσεις περασμένες δημοσιεύσεις με greeklish
모든 23 평가 읽기

기여자 & 개발자

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

기여자

“AutoConvert Greeklish Permalinks”(이)가 2(으)로 번역되었습니다. 기여해 주셔서 번역자님께 감사드립니다.

자국어로 “AutoConvert Greeklish Permalinks”(을)를 번역하세요.

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

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

변경이력

4.1.2

  • Added support for WooCommerce HPOS

4.1.1

  • Minor security improvement

4.1.0

  • Added more polytonic characters

4.0.3

  • Fix js dependency

4.0.2

  • Optimize js/css files
  • Fix php notice

4.0.1

  • Removed warning

4.0.0

  • New Convertor for old posts and terms
  • Removed WP Background Processing dependency
  • Added WP Rest API endpoints

3.4.0

  • Added support for polytonic characters
  • Added hook for modifying expressions

3.3.1

  • Fixed error on upgrade

3.3.0

  • Added wp-cli commands for getting (wp agp get_options) and updating the options( wp agp update_options) of the plugin
  • Added support for multiple post types and taxonomies as arguments. Example: wp agp convert --post_types=post,page
  • Minor UI update
  • Fix: Reduced slug length on 3.2.0 version
  • Added warning about reduced slug length when selecting post types and taxonomies for automatic conversion

3.2.0

  • Added the option to select which taxonomies and post types affected by automatic conversion
  • Changed hook for automatic conversion from sanitize_title to wp_unique_post_slug and wp_unique_term_slug

3.1.0

  • Added wp-cli support

3.0.2

  • Fixes 404 error on archive pages

3.0.0

  • Implemented asynchronous background conversion.
  • Added select all option
  • Added panel for report of last conversion (duration, conversion percentage, errors)
  • Added conversion progress notice
  • Set default diphthongs option on advanced (affects only on new installations)

2.0.0

  • Rewrite of plugin as object-oriented
  • Improved the UI of the dipthongs option at settings
  • Fixed issue when passing slug that already exists
  • Added notices for success and failure of conversion
  • Added uninstall function that deletes plugin’s options stored in your database
  • Better copywriting