Created
July 18, 2019 21:45
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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