Plugin info

Total downloads: 18,429
Active installs: 3,000
Total reviews: 7
Average rating: 4.9
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 2 language(s)
Contributors: 1
Last updated: 2/13/2022 (1417 days ago)
Added to WordPress: 6/20/2014 (11 years old)
Minimum WordPress version: 5.0
Tested up to WordPress version: 5.9.12
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 1417 days ago • 7 reviews

22/100

Is Greeklish Slugs abandoned?

Possibly abandoned (last update 1417 days ago).

Compatibility

Requires WordPress: 5.0
Tested up to: 5.9.12
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

Convert Greek characters to Latin (greeklish)
Using greeklish-permalinks with some extra functionality.

Features

  • Converts post, pages, taxonomy and category slugs to greeklish automatically
  • Hooks in the sanitize_title() function
  • You can use skp_greeklish_slugs($your_text) in your template files (good for dynamic css classes etc.)
  • Select to strip out 1 letter words
  • Select to strip out 2 letter words
  • Define stop words that will be striped out of the slugs
  • You can modify the translitaration array of regex via apply_filter('skp_greeklish_slugs_expressions', 'your_callback')

Filter the regex array

You can use apply_filter('skp_greeklish_slugs_expressions', 'your_callback') and modify the regex array used to transliterate

 'mp',
    '/[νΝ][τΤ]/u' => 'nt',
    '/[τΤ][σΣ]/u' => 'ts'
    ...
    );

    // Add them
    $expressions = array_merge( $new_expressions, $expressions );

    return $expressions;
}
add_filter( 'skp_greeklish_slugs_expressions', 'your_callback' );
?>

Fork on github.

noveldigital.pro

Installation

  1. Upload the files to the /wp-content/plugins/skp-greeklish-slugs/ directory.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Frequently Asked Questions

.

Review feed

No reviews available

Screenshots

  1. The options page

    The options page

Changelog

1.1.2

*Added uninstall file

1.1.1

*Code cleanup

1.1.0

*Added greek transaltions
*Added regex array filter

1.0.1

  • Added screenshots

1.0

  • Release