Created
September 26, 2016 20:13
-
-
Save isaumya/39426ce7a6ad973c2d96f70fc7c3f264 to your computer and use it in GitHub Desktop.
Add SVG Support in WordPress Media Uploader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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