Skip to content

Instantly share code, notes, and snippets.

@marisqaporter
Last active February 22, 2016 20:13
Show Gist options
  • Save marisqaporter/53e98e0f250c97cb7cca to your computer and use it in GitHub Desktop.
Save marisqaporter/53e98e0f250c97cb7cca to your computer and use it in GitHub Desktop.
allow WordPress media uploader to upload svg
//* ability to upload svgs
function cc_mime_types($mimes) {
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter('upload_mimes', 'cc_mime_types');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment