Skip to content

Instantly share code, notes, and snippets.

@cryptexvinci
Last active October 17, 2018 14:57
Show Gist options
  • Save cryptexvinci/0b8d05b9a9166e3952bedb7631370364 to your computer and use it in GitHub Desktop.
Save cryptexvinci/0b8d05b9a9166e3952bedb7631370364 to your computer and use it in GitHub Desktop.
Allow PPT & PPTX file upload for Ultimate Member
/**
* 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