Advertisement
thesufi

WP Allow mime type (swf)

Dec 23rd, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. function dct_allow_upload_swf($existing_mimes) {
  2.     $existing_mimes['swf'] = 'text/swf'; //allow swf files
  3.     return $existing_mimes;
  4. }
  5. add_filter('upload_mimes', 'dct_allow_upload_swf');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement