WordPress SVG: What It Is and How to Upload It (The Safe Way)

PHOTO EMBED

Sun Feb 20 2022 13:35:28 GMT+0000 (Coordinated Universal Time)

Saved by @rafalw

function add_file_types_to_uploads($file_types){
$new_filetypes = array();
$new_filetypes['svg'] = 'image/svg+xml';
$file_types = array_merge($file_types, $new_filetypes );
return $file_types;
}
add_filter('upload_mimes', 'add_file_types_to_uploads');
content_copyCOPY

https://www.hostinger.com/tutorials/upload-svg-to-wordpress