Skip to content

Instantly share code, notes, and snippets.

@ovizii
Created August 4, 2013 09:46
Show Gist options
  • Select an option

  • Save ovizii/6149900 to your computer and use it in GitHub Desktop.

Select an option

Save ovizii/6149900 to your computer and use it in GitHub Desktop.
Allow upload of more file types
<?php //just need to research the type for each ending
function addUploadMimes($mimes) {
$mimes = array_merge($mimes, array(
'pdf|xls|tmPreferences' => 'application/octet-stream'
));
return $mimes;
}
?>
add_filter('upload_mimes', 'addUploadMimes');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment