Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Last active July 13, 2021 06:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/632debfca8dba673dd9c717b93e9c45e to your computer and use it in GitHub Desktop.
Save plugin-republic/632debfca8dba673dd9c717b93e9c45e to your computer and use it in GitHub Desktop.
<?php
function my_prefix_upload_mimes( $mimes ) {
// Add PhotoShop PSD files to list of permitted WordPress mime types
$mimes['psd'] = "application/x-photoshop";
return $mimes;
}
add_filter( 'upload_mimes', 'my_prefix_upload_mimes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment