dylanmcleod
4/30/2016 - 2:44 AM

ALLOW SVG UPLOADS THROUGH WORDPRESS MEDIA UPLOADER - https://www.machine-agency.com/blog/allow-svg-uploads-through-wordpress-media-uploader/

/** ALLOW SVG UPLOADS THROUGH WORDPRESS MEDIA UPLOADER */
##################################################################

function cc_mime_types( $mimes ){
    $mimes['svg'] = 'image/svg+xml';
    return $mimes;
}
add_filter( 'upload_mimes', 'cc_mime_types' );

/** display images on media uploader and feature images */

function fix_svg() {
    echo '
          td.media-icon img[src$=".svg"], img[src$=".svg"].attachment-post-thumbnail
          { width: 100% !important; height: auto !important; }
          ';
}
add_action('admin_head', 'fix_svg');
.svg-image {
  max-width:100%;
  height:auto;
  width:auto;
}