Skip to content

Instantly share code, notes, and snippets.

@twentyfortysix
Last active February 13, 2016 19:45
Show Gist options
  • Save twentyfortysix/5c7112f5bab98beeaa8b to your computer and use it in GitHub Desktop.
Save twentyfortysix/5c7112f5bab98beeaa8b to your computer and use it in GitHub Desktop.
WP - disable png and other big files to upload
/** prevent uploading of .bmp files. */
add_filter('upload_mimes', function(array $mimes)
{
unset($mimes['bmp']);
unset($mimes['png']);
return $mimes;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment