Skip to content

Instantly share code, notes, and snippets.

@zanetaylor
Last active September 1, 2015 20:44
Show Gist options
  • Save zanetaylor/3fc8dadf08b7a2ae1bc0 to your computer and use it in GitHub Desktop.
Save zanetaylor/3fc8dadf08b7a2ae1bc0 to your computer and use it in GitHub Desktop.
Enable SVG uploads in WordPress
add_filter('upload_mimes', 'custom_upload_mimes');
function custom_upload_mimes ( $existing_mimes=array() ) {
// add the file extension to the array
$existing_mimes['svg'] = 'mime/type';
// call the modified list of extensions
return $existing_mimes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment