V
V
Vladislav Shvetsov2020-04-29 00:32:32
WordPress
Vladislav Shvetsov, 2020-04-29 00:32:32

Why can't I include SVG?

Unable to load svg file.
Writes this error: "logo-black.svg Sorry, this file type is not allowed for security reasons."
The code seems to be correct.

add_filter( 'upload_mimes', 'upload_allow_types' );
function upload_allow_types( $mimes ) {
  // разрешаем новые типы
  $mimes['svg']  = 'text/plain'; // image/svg+xml
  // отключаем имеющиеся
  unset( $mimes['mp4a'] );
  return $mimes;
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vladislav Shvetsov, 2020-04-29
@Shved501

Figured it out, no longer relevant.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question