Skip to content

Instantly share code, notes, and snippets.

@eleanorcode
Last active April 13, 2022 21:44
Show Gist options
  • Select an option

  • Save eleanorcode/f8c8b2b6bda83f797e4b46749cd43ab0 to your computer and use it in GitHub Desktop.

Select an option

Save eleanorcode/f8c8b2b6bda83f797e4b46749cd43ab0 to your computer and use it in GitHub Desktop.
Enable SVG support in WordPress
<?php
add_filter('wp_check_filetype_and_ext', function ($data, $file, $filename, $mimes) {
$filetype = wp_check_filetype($filename, $mimes);
return [
'ext' => $filetype['ext'],
'type' => $filetype['type'],
'proper_filename' => $data['proper_filename'],
];
}, 10, 4);
function cc_mime_types($mimes)
{
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter('upload_mimes', 'cc_mime_types');
function fix_svg()
{
echo '<style type="text/css">
.attachment-266x266, .thumbnail img {
width: 100% !important;
height: auto !important;
} </style>';
}
add_action('admin_head', 'fix_svg');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment