Skip to content

Instantly share code, notes, and snippets.

@isaumya
Created September 26, 2016 20:13
Show Gist options
  • Save isaumya/39426ce7a6ad973c2d96f70fc7c3f264 to your computer and use it in GitHub Desktop.
Save isaumya/39426ce7a6ad973c2d96f70fc7c3f264 to your computer and use it in GitHub Desktop.
Add SVG Support in WordPress Media Uploader
<?php
/*** enable svg support ***/
add_filter('upload_mimes', function( $mimes ) {
$mimes['svg'] = 'image/svg+xml';
$mimes['svgz'] = 'image/svg+xml';
return $mimes;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment