Skip to content

Instantly share code, notes, and snippets.

@malinky
Created January 19, 2015 09:20
Show Gist options
  • Save malinky/ff7c451e102de81920d9 to your computer and use it in GitHub Desktop.
Save malinky/ff7c451e102de81920d9 to your computer and use it in GitHub Desktop.
Allow SVG into WP Media Uploader
/**
* Allow SVG into media uploader.
*/
function malinky_mime_types( $mimes )
{
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter('upload_mimes', 'malinky_mime_types');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment