Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. add_filter( 'upload_mimes', function ( $mime_types ) {
  2. $mime_types[ 'eps' ] = 'application/postscript';
  3. $mime_types[ 'svg' ] = 'image/svg+xml';
  4.  
  5. return $mime_types;
  6. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement