Hi,
Most of the time I use Happy Files for media organisation, and this plugin has an option to allow SVG upload, which is handy.
But for simple sites or even large sites without too many pictures, I don’t need folders and I would be happy to remove a plugin and allow SVG upload at the same time.
What about an option in settings or role editor ? I think it would suit perfectly in a performance oriented plugin like Cwicly.
Meanwhile, I use this:
function cc_mime_types($mimes) {
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter('upload_mimes', 'cc_mime_types');
But I don’t know it is secure proof and I wish Cwicly could handle this for me