Skip to content

Instantly share code, notes, and snippets.

@abhilash0001
Created August 11, 2014 21:57
Show Gist options
  • Save abhilash0001/2e8127714b6eb635a056 to your computer and use it in GitHub Desktop.
Save abhilash0001/2e8127714b6eb635a056 to your computer and use it in GitHub Desktop.
Allow SVG uploads to wordpress
/*
Place this code within functions.php file.
(Or) to your plugins folder if you are building a custom plugin
*/
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