Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Farmatique/e45eaaad5bcb439c3d9bdc2ca4f26f1a to your computer and use it in GitHub Desktop.
Save Farmatique/e45eaaad5bcb439c3d9bdc2ca4f26f1a to your computer and use it in GitHub Desktop.
allow wordpress to upload svg
/* insert inside functions.php */
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