<?php

require get_template_directory() . '/inc/widgets.php';

function mozzarella_menu(){
    register_nav_menus(array(
        'footerA' => "Footer Menu 1",
        'footerB' => 'Footer Menu 2',
        'footerC' => 'Footer Social Menu',
    ));
}

add_action('init', 'mozzarella_menu');

function mozzarella_theme_support(){
    add_theme_support('title-tag');
    add_theme_support('post-thumbnails');
    add_theme_support('custom-logo');
    add_theme_support( 'automatic-feed-links' );
}

add_action('after_setup_theme', 'mozzarella_theme_support');

function mozzarella_register_styles(){
    $version = wp_get_theme() -> get('Version');
    wp_enqueue_style('mozzarella-home-style', get_template_directory_uri() . "/style.css", array(), $version, 'all');
    wp_enqueue_style('mozzarella-fontawesome', get_template_directory_uri() . "/assets/css/fontawesome-free-5.15.3-web/css/all.min.css", array(), '5.15.3', 'all');
    wp_enqueue_style('mozzarella-poppins', "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap", array(), $version, 'all');
}

add_action('wp_enqueue_scripts', 'mozzarella_register_styles');

function mozzarella_widgets_init(){
    register_sidebar(array(
        'name' => __('Header', 'mozzarella')
    ));
    register_sidebar(array(
        'name' => __('Home-Top', 'mozzarella')
    ));
    register_sidebar(array(
        'name' => __('Home-Main', 'mozzarella')
    ));
}

add_action('widgets_init', 'mozzarella_widgets_init');

?>