Skip to content

Instantly share code, notes, and snippets.

@dksign
Last active October 3, 2020 22:16
Show Gist options
  • Select an option

  • Save dksign/2730c14f902043eed4b57c8b69f2c375 to your computer and use it in GitHub Desktop.

Select an option

Save dksign/2730c14f902043eed4b57c8b69f2c375 to your computer and use it in GitHub Desktop.
Add support for svg upload in Wordpress.
// Allow SVG upload
function my_types($mime_types)
{
$mime_types['svg'] = 'image/svg+xml'; //Adding svg extension
return $mime_types;
}
add_filter('upload_mimes', 'my_types', 1, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment