skip to Main Content

SVG arent supported in new wordpress version

I have the new 5.8.1 wordpress, but svg in the media uploader aren't working anymore. I used this code to integrate svgs: function cc_mime_types($mimes) { $mimes['svg'] = 'image/svg+xml'; return $mimes; } add_filter('upload_mimes', 'cc_mime_types'); Why is it not working?

VIEW QUESTION
Back To Top
Search