Пока переписал проверку в
wp_check_filetype_and_ext так
if ( ((is_array($type)) && (!in_array($real_mime, $type ))) || ((!is_array($type)) && ( $real_mime !== $type )) ) {
echo '<script>console.log("(' . $ext . ') Error file mime-type : '.$real_mime.'")</script>';
$type = $ext = false;
}
А в functions добавил
function additional_mime_types( $mimes ) {
$mimes['doc'] = array('application/msword', 'application/vnd.ms-office');
$mimes['docx'] = array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip');
return $mimes;
}
Может есть другое решение?