/* 
Theme Name: Studio Sanne-Lotte Theme
Theme URI: https://sanne-lotte.com
Description: Studio Sanne-Lotte Theme
Author: Sanne-Lotte
Author URI: https://sanne-lotte.com
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/* Add your custom styles here */

function my_custom_upload_mimes($mimes) {
    // Voeg de lettertype extensies toe die je wilt toestaan
    $mimes['woff'] = 'application/font-woff';
    $mimes['woff2'] = 'application/font-woff2';
    $mimes['otf'] = 'font/otf';
    $mimes['ttf'] = 'font/ttf';
    return $mimes;
}
add_filter('upload_mimes', 'my_custom_upload_mimes');
