這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

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.

常見問題

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