Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

SVG – biblioteka mediów

Zezwolenie na ładowanie plików SVG do biblioteki mediów

// wp-config.php

define( 'ALLOW_UNFILTERED_UPLOADS', true );

// functions.php

function add_file_types_to_uploads($file_types){

    $new_filetypes = array();
    $new_filetypes['svg'] = 'image/svg+xml';
    $file_types = array_merge($file_types, $new_filetypes );

    return $file_types;
}
add_action('upload_mimes', 'add_file_types_to_uploads');