Skip to content

Instantly share code, notes, and snippets.

@artikus11
Last active November 12, 2022 09:50
Show Gist options
  • Save artikus11/c9351f7fdf9f378137cb35e1c4787b4b to your computer and use it in GitHub Desktop.
Save artikus11/c9351f7fdf9f378137cb35e1c4787b4b to your computer and use it in GitHub Desktop.
Разрешить загрузку нестандартных типов файлов
/**
* Разрешаем загрузку всех нужных форматов файлов
*
* @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