jasonsyourhuckleberry
9/9/2018 - 8:52 PM

Add SVGs to WordPress

Add the following function anywhere before the closing tag of the child theme’s functions.php file:

// Allow SVG uploads

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');