Skip to content

Instantly share code, notes, and snippets.

@mattiasghodsian
Last active April 28, 2023 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattiasghodsian/5f2629229b19a4a6fb484dc2af88abb6 to your computer and use it in GitHub Desktop.
Save mattiasghodsian/5f2629229b19a4a6fb484dc2af88abb6 to your computer and use it in GitHub Desktop.
[Wordpress] SVG upload
/**
* Title: SVG upload
* Author: Mattias Ghodsian
* Donate a cup of coffee: https://www.buymeacoffee.com/mattiasghodsian
* Donate Eth: 0xBBB96204E45D11C9799c6B12E6eE6F0d4A071Ef5
**/
add_filter( 'upload_mimes', 'cc_mime_types' );
function cc_mime_types( $mimes ) {
$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