Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created February 25, 2015 02:39
Show Gist options
  • Select an option

  • Save bryceadams/4a27defb1b4564da3f83 to your computer and use it in GitHub Desktop.

Select an option

Save bryceadams/4a27defb1b4564da3f83 to your computer and use it in GitHub Desktop.
function custom_list_of_myme_types( $mime_types ) {
$mime_types = array(
'pdf' => 'application/pdf',
'doc' => 'application/msword',
);
return $mime_types;
}
add_filter('upload_mimes', 'custom_list_of_myme_types', 1, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment