Skip to content

Instantly share code, notes, and snippets.

@richardevcom
Last active June 12, 2020 01:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richardevcom/0f5486fe3e3e54ec86bd193a2a13b9d3 to your computer and use it in GitHub Desktop.
Save richardevcom/0f5486fe3e3e54ec86bd193a2a13b9d3 to your computer and use it in GitHub Desktop.
WordPress enable SVG mime-type
<?php
/**
* Enable SVG mime-type
*/
add_filter('upload_mimes', function($mimes){
$mimes['svg'] = 'image/svg+xml';
return $mimes;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment