Skip to content

Instantly share code, notes, and snippets.

@bmdinteractive
Created September 3, 2018 16:42
Show Gist options
  • Save bmdinteractive/7105e8c5abb85f3b8ca4bff131f4a6e9 to your computer and use it in GitHub Desktop.
Save bmdinteractive/7105e8c5abb85f3b8ca4bff131f4a6e9 to your computer and use it in GitHub Desktop.
Add SVG to allowable mime types in WordPress
function mime_types($mimes) {
// Enable SVG
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter( 'upload_mimes', 'mime_types' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment