Last active
October 17, 2018 14:57
-
-
Save cryptexvinci/0b8d05b9a9166e3952bedb7631370364 to your computer and use it in GitHub Desktop.
Allow PPT & PPTX file upload for Ultimate Member
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
/** | |
* Allow PPT & PPTX file upload for Ultimate Member | |
* @link https://wordpress.org/plugins/ultimate-member/ | |
*/ | |
add_filter( 'um_allowed_file_types', 'matt_allowed_new_file_types', 10, 1 ); | |
function matt_allowed_new_file_types( $types ) { | |
$types = array( | |
'pdf' => 'PDF', | |
'txt' => 'Text', | |
'csv' => 'CSV', | |
'doc' => 'DOC', | |
'docx' => 'DOCX', | |
'odt' => 'ODT', | |
'ods' => 'ODS', | |
'xls' => 'XLS', | |
'xlsx' => 'XLSX', | |
'zip' => 'ZIP', | |
'rar' => 'RAR', | |
'mp3' => 'MP3', | |
'jpg' => 'JPG', | |
'jpeg' => 'JPEG', | |
'png' => 'PNG', | |
'gif' => 'GIF', | |
'eps' => 'EPS', | |
'psd' => 'PSD', | |
'tif' => 'TIF', | |
'tiff' => 'TIFF', | |
'ppt' => 'PPT', | |
'pptx' => 'PPTX', | |
); | |
return $types; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment