Skip to content

Instantly share code, notes, and snippets.

@iansvo
Created October 19, 2022 22:01
Show Gist options
  • Save iansvo/8c801748dcc4cc93250db558a574f4c7 to your computer and use it in GitHub Desktop.
Save iansvo/8c801748dcc4cc93250db558a574f4c7 to your computer and use it in GitHub Desktop.
Add svg support to the WordPress media library
<?php
add_filter( 'upload_mimes', function($mime_types) {
$mime_types['svg'] = 'image/svg+xml';
return $mime_types;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment