Skip to content

Instantly share code, notes, and snippets.

@neilgee
Created August 29, 2015 09:29
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save neilgee/cc5196336fa48bb024fa to your computer and use it in GitHub Desktop.
Save neilgee/cc5196336fa48bb024fa to your computer and use it in GitHub Desktop.
Add SVG to WordPress via Media Uploader
<?php // <~ don't add me in
add_filter('mime_types', 'themeprefix_add_svg_images');
//Allow SVG Images Via Media Uploader
function themeprefix_add_svg_images($mimetypes) {
$mimetypes['svg'] = 'image/svg+xml';
return $mimetypes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment