Skip to content

Instantly share code, notes, and snippets.

@voneff
Created August 5, 2018 11:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voneff/3c0e99869d4a8a5467baabdfa811e9eb to your computer and use it in GitHub Desktop.
Save voneff/3c0e99869d4a8a5467baabdfa811e9eb to your computer and use it in GitHub Desktop.
WordPress: Allow SVG uploads
<?php
/* Allow upload of SVG files */
/* Source: https://blog.kulturbanause.de/2013/05/svg-dateien-in-die-wordpress-mediathek-hochladen/ */
function voneff_svg ( $svg_mime ){
$svg_mime['svg'] = 'image/svg+xml';
return $svg_mime;
}
add_filter( 'upload_mimes', 'voneff_svg' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment