
If you liked this video, then please Like and consider subscribing to our channel for more WordPress videos.
Text version of this tutorial:
http://www.wpbeginner.com/wp-tutorials/how-to-add-additional-file-types-to-be-uploaded-in-wordpress/
Check us out on Facebook:
https://www.facebook.com/wpbeginner
Follow us on Twitter:
Tweets by wpbeginner
Join our circle on Google+:
https://plus.google.com/+wpbeginner/
Checkout our website for more WordPress Tutorials
http://www.wpbeginner.com/
Summary of this Tutorial:
To get around the limitations you would start by opening your functions.php page.
If you wanted to add a different code you would check out the extension list below.
Related Links:
extension list
http://www.freeformatter.com/mime-types-list.html
Code:
function my_myme_types($mime_types){
$mime_types[‘svg’] = ‘image/svg+xml’; //Adding svg extension
return $mime_types;
}
add_filter(‘upload_mimes’, ‘my_myme_types’, 1, 1);