Skip to content

Instantly share code, notes, and snippets.

@jroquejr
Last active April 9, 2019 02:12
Show Gist options
  • Save jroquejr/9875621 to your computer and use it in GitHub Desktop.
Save jroquejr/9875621 to your computer and use it in GitHub Desktop.
WordPress - Remover acentos dos nomes de imagens no upload
<?php
// remove_accents: https://codex.wordpress.org/Function_Reference/remove_accents
add_filter('sanitize_file_name', 'sa_sanitize_spanish_chars', 10);
function sa_sanitize_spanish_chars ($filename) {
return remove_accents( $filename );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment