Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. function endo_allow_csv_uploads( $mime_types ) {
  5.  
  6. $mime_types['csv'] = 'text/csv';
  7. return $mime_types;
  8.  
  9. }
  10.  
  11. add_filter('upload_mimes', 'endo_allow_csv_uploads');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement