I created a custom post type and set its permalink structure to 'category/postname'.
I found that sometimes, when i create a post in a non latin characters, the post slug is getting cut.
I googled and found that the post guid field and post_name field are limited to 255 and 200 characters. and also noticed that the value in these fields (for the non latin slugs) is encoded (like %85%e0%e0%b2%b2%b5%e0%b2%b0%e0%b2) which takes a lot more space.
my database is utf8 encoded and collate is utf8_general_ci. i tried other collations but with no success.
is there any way to fix that so my slug will remain complete no matter what permalink structure is or title length?
Thanks.
