Skip to content

Instantly share code, notes, and snippets.

@denniserdmann
Last active December 20, 2015 06:29
Show Gist options
  • Save denniserdmann/6086658 to your computer and use it in GitHub Desktop.
Save denniserdmann/6086658 to your computer and use it in GitHub Desktop.
Little Snippet to add svg files to your media library in wordpress
function svg_upload ( $svg_mime ){
$svg_mime['svg'] = 'image/svg+xml';
return $svg_mime;
}
add_filter( 'upload_mimes', 'svg_upload' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment