Skip to content

Instantly share code, notes, and snippets.

@sachithrrra
Created June 10, 2021 12:41
Show Gist options
  • Save sachithrrra/d0e64004d90581f5af4b26a4b10aeeef to your computer and use it in GitHub Desktop.
Save sachithrrra/d0e64004d90581f5af4b26a4b10aeeef to your computer and use it in GitHub Desktop.
Enable SVG support on Wordpress
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