Answer the question
In order to leave comments, you need to log in
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
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question