Skip to content

Instantly share code, notes, and snippets.

@mestrewp
Created May 28, 2012 18:28
Show Gist options
  • Save mestrewp/2820489 to your computer and use it in GitHub Desktop.
Save mestrewp/2820489 to your computer and use it in GitHub Desktop.
#wordpress - Removindo special chars from uploaded files
<?
add_filter( 'sanitize_file_name_chars', 'add_chars_to_filter', 10, 2 );
function add_chars_to_filter ( $special_chars, $filename_raw ) {
$special_chars[] = 'e';
return $special_chars;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment