fahimmurshed

Add custom mime types to WordPress

Jul 2nd, 2023
686
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. //The following goes in a themes functions file or a custom hooks plugin
  2.  
  3. function custom_upload_mimes ( $existing_mimes ) {
  4.     $existing_mimes['epub'] = 'application/epub+zip';
  5.     $existing_mimes['mobi'] = 'application/x-mobipocket-ebook';
  6.  
  7.     return $existing_mimes;
  8. }
  9.  
  10. add_filter('upload_mimes', 'custom_upload_mimes');
Advertisement
Add Comment
Please, Sign In to add comment