Allow Wordpress to upload SVG files
Add this to your theme functions.php
function my_upload_mimes( $mimes ){
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter( 'upload_mimes', 'my_upload_mimes' );
← Go homeAdd this to your theme functions.php
function my_upload_mimes( $mimes ){
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter( 'upload_mimes', 'my_upload_mimes' );
← Go home