// Function to allow .csv uploads function drick_custom_upload_mimes($mimes = array()) { // Add a key and value for the CSV file type $mimes['csv'] = "text/csv"; return $mimes; } add_filter('upload_mimes', 'drick_custom_upload_mimes');