Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function allow_excel_mime_types( $mimes ) {
  2. $mimes['xls|xlsx'] = 'application/vnd.ms-excel';
  3. return $mimes;
  4. }
  5. add_filter( 'mime_types', 'allow_excel_mime_types' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement