Remove accent from filename during upload
-
Hello,
For latin version of wordpress, uploaded files in the media librabry can content special characters in filenames.
Then for some browsers the links to download files are broken.
I look for a solution in the web and try to use this in my functions.php theme file :
add_filter(‘sanitize_file_name’, ‘sa_sanitize_chars’, 10);
function sa_sanitize_chars($filename) {
return remove_accents($filename);
}But it does’nt work, special caracheter are still present in filemane.
Thanks for you help
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Remove accent from filename during upload’ is closed to new replies.