Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created January 23, 2018 16:13
Show Gist options
  • Save nathaningram/035b4c6b25738c9805d14495b80ce907 to your computer and use it in GitHub Desktop.
Save nathaningram/035b4c6b25738c9805d14495b80ce907 to your computer and use it in GitHub Desktop.
Adding SVG Format to Allowed WordPress File Types
//Adding SVG Format to Allowed WordPress File Types
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