Advertisement
CodeDropz

Add Custom Mime Types - Wordpress

Oct 1st, 2023 (edited)
864
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. add_filter( 'mime_types', 'wpdocs_add_webp' );
  2.  
  3.     function wpdocs_add_webp( $wp_get_mime_types ) {
  4.         $wp_get_mime_types['step'] = 'application/octet-stream';
  5.         $wp_get_mime_types['STEP'] = 'application/octet-stream';
  6.         $wp_get_mime_types['x_t'] = 'application/octet-stream';
  7.         return $wp_get_mime_types;
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement