Skip to content

Instantly share code, notes, and snippets.

@kikmedia
Created October 27, 2018 07:22
Show Gist options
  • Save kikmedia/d3b91b87736e6119101bdeb1989c3b26 to your computer and use it in GitHub Desktop.
Save kikmedia/d3b91b87736e6119101bdeb1989c3b26 to your computer and use it in GitHub Desktop.
Add SVG als file type in Wordpress
function add_file_types_to_uploads($file_types){
$new_filetypes = array();
$new_filetypes['svg'] = 'image/svg+xml';
$file_types = array_merge($file_types, $new_filetypes );
return $file_types;
}
add_action('upload_mimes', 'add_file_types_to_uploads');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment