Skip to content

Instantly share code, notes, and snippets.

@morgyface
Created May 3, 2020 19:34
Show Gist options
  • Save morgyface/2fa051448590410e1531248b5374317d to your computer and use it in GitHub Desktop.
Save morgyface/2fa051448590410e1531248b5374317d to your computer and use it in GitHub Desktop.
WordPress | Allow SVG files
<?php
// Add SVG to allowed file uploads
function add_file_types_to_uploads($file_types){
$new_filetypes = array();
$new_filetypes['svg'] = 'image/svg';
$file_types = array_merge($file_types, $new_filetypes );
return $file_types;
}
add_action('upload_mimes', 'add_file_types_to_uploads');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment