If I want to create a new CPT my typing will be corrected instantly. For example: capital letters are corrected to lower case letters. Special characters are corrected to an underscore "_".
Unfortunately these corrections do not contain locale specific replacements, for example for the German language as seen in WordPress core:
https://github.com/WordPress/WordPress/blob/a39daee51f4ce334c1d597f82f05783f7b20b50c/wp-includes/formatting.php#L1952-L1958
For example: ü=>ue, ä=>ae, ß=>ss, etc.
This function remove_accents contains some more replacements than just for the German language. It would be great if these locale specific replacements would be used in CPT UI too.
Thanks for considering!
If I want to create a new CPT my typing will be corrected instantly. For example: capital letters are corrected to lower case letters. Special characters are corrected to an underscore "_".
Unfortunately these corrections do not contain locale specific replacements, for example for the German language as seen in WordPress core:
https://github.com/WordPress/WordPress/blob/a39daee51f4ce334c1d597f82f05783f7b20b50c/wp-includes/formatting.php#L1952-L1958
For example: ü=>ue, ä=>ae, ß=>ss, etc.
This function
remove_accentscontains some more replacements than just for the German language. It would be great if these locale specific replacements would be used in CPT UI too.Thanks for considering!