Last active
November 12, 2022 09:50
-
-
Save artikus11/c9351f7fdf9f378137cb35e1c4787b4b to your computer and use it in GitHub Desktop.
Разрешить загрузку нестандартных типов файлов
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Разрешаем загрузку всех нужных форматов файлов | |
* | |
* @param $mime_types | |
* | |
* @return mixed | |
* | |
* @see https://wp-kama.ru/hook/upload_mimes | |
*/ | |
function add_all_type( $mime_types ) { | |
return array_merge( | |
$mime_types, | |
[ | |
'svg' => 'image/svg+xml', | |
'xml' => 'application/xml', | |
'csv' => 'text/csv', | |
'doc' => 'application/msword', | |
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', | |
'xls' => 'application/vnd.ms-excel', | |
'xlt' => 'application/vnd.ms-excel', | |
'xla' => 'application/vnd.ms-excel', | |
'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', | |
'pdf' => 'application/pdf', | |
] | |
); | |
} | |
add_filter( 'upload_mimes', 'add_all_type' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment