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;
}