문제

I've looked through a number of previously accepted answers, but none seem to work/apply to the latest versions of WordPress.

I'm trying to allow .rfa file types to be uploaded to the media library.

This is what I've found from a previous answer;

function additional_mime_types($mime_types) {
  $mime_types['rfa'] = 'application/octet-stream';
  return $mime_types;
}
add_filter('upload_mimes', 'additional_mime_types', 1, 1);

How can I allow .rfa file types to be uploaded to the media library?

도움이 되었습니까?

해결책

I had the same issue, it looks like WordPress isn't able to determine the correct MIME type for RFA files, so it defaults to:

'application/CDFV2-unknown'

Changing the MIME type to this fixed it for me. So it would be:

add_filter( 'upload_mimes', function ( $mime_types ) {
    $mime_types['rfa'] = 'application/CDFV2-unknown';
    return $mime_types;
} );
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 wordpress.stackexchange
scroll top