Als het je niet lukt om bepaalde bestanden in de mediabibliotheek te uploaden kan je deze code in functions.php zetten of als je geen child theme heb kan je dit bij code snippet toevoegen.

function my_custom_mime_types( $mimes ) {

// New allowed mime types.
$mimes['svg'] = 'image/svg+xml';
$mimes['svgz'] = 'image/svg+xml';
$mimes['doc'] = 'application/msword';

// Optional. Remove a mime type.
unset( $mimes['exe'] );

return $mimes;
}
add_filter( 'upload_mimes', 'my_custom_mime_types' );