Skip to content

Instantly share code, notes, and snippets.

@flexseth
Created July 18, 2019 21:45
Show Gist options
  • Save flexseth/af101443a7e35d628fb226a914189116 to your computer and use it in GitHub Desktop.
Save flexseth/af101443a7e35d628fb226a914189116 to your computer and use it in GitHub Desktop.
Allow Photoshop files to be uploaded to the media gallery in word press
<?php
function fp_photoshop_myme_types($mime_types){
$mime_types['psd'] = 'image/vnd.adobe.photoshop'; //Adding photoshop files
return $mime_types;
}
add_filter('upload_mimes', 'fp_photoshop_myme_types', 1, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment