Skip to content

Instantly share code, notes, and snippets.

@dbushell
Created December 9, 2012 21:19
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dbushell/4247060 to your computer and use it in GitHub Desktop.
Save dbushell/4247060 to your computer and use it in GitHub Desktop.
Add SVG upload support to a WordPress theme
// add to functions.php in your WordPress theme
add_filter('upload_mimes', 'my_upload_mimes');
function my_upload_mimes($mimes = array())
{
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment