Skip to content

Instantly share code, notes, and snippets.

@tanmay27vats
Created July 4, 2017 06:00
Show Gist options
  • Save tanmay27vats/68b826d28275a537510e9b6e01879f58 to your computer and use it in GitHub Desktop.
Save tanmay27vats/68b826d28275a537510e9b6e01879f58 to your computer and use it in GitHub Desktop.
Enable SVG support in Wordpress. How to upload/enable SVG images on wordpress.
function cc_mime_types($mimes) {
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter('upload_mimes', 'cc_mime_types');
function fix_svg_thumb_display() {
echo '<style type="text/css">
td.media-icon img[src$=".svg"], img[src$=".svg"].attachment-post-thumbnail {
width: 100% !important;
height: auto !important;
}
</style>
';
}
add_action('admin_head', 'fix_svg_thumb_display');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment