Skip to content

Instantly share code, notes, and snippets.

@Asikur22
Forked from alexander-young/functions.php
Created January 16, 2020 04:31
Show Gist options
  • Save Asikur22/6e19bcc50b483c811d19f6b55759beda to your computer and use it in GitHub Desktop.
Save Asikur22/6e19bcc50b483c811d19f6b55759beda to your computer and use it in GitHub Desktop.
Allow SVGs in WordPress media library
function upload_svg_files( $allowed ) {
if ( !current_user_can( 'manage_options' ) )
return $allowed;
$allowed['svg'] = 'image/svg+xml';
return $allowed;
}
add_filter( 'upload_mimes', 'upload_svg_files');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment