Skip to content

Instantly share code, notes, and snippets.

@runezero
Created May 25, 2022 14:14
Show Gist options
  • Select an option

  • Save runezero/53bacf78bd5823dc2b9598108a225054 to your computer and use it in GitHub Desktop.

Select an option

Save runezero/53bacf78bd5823dc2b9598108a225054 to your computer and use it in GitHub Desktop.
[Allow file type upload] Allow new file type uploads in the media library, multisites excluded #wordpress
add_filter( 'upload_mimes', 'allow_upload_new_mimes' );
function allow_upload_new_mimes( $mimes = array() ) {
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment