<?php
/**
* Footer options
*
* @package MaxWP WordPress Theme
* @copyright Copyright (C) 2025 ThemesDNA
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
* @author ThemesDNA <themesdna@gmail.com>
*/

function maxwp_footer_options($wp_customize) {

    $wp_customize->add_section( 'sc_maxwp_footer', array( 'title' => esc_html__( 'Footer', 'maxwp' ), 'panel' => 'maxwp_main_options_panel', 'priority' => 440 ) );

    $wp_customize->add_setting( 'maxwp_options[footer_text]', array( 'default' => '', 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'maxwp_sanitize_html', ) );

    $wp_customize->add_control( 'maxwp_footer_text_control', array( 'label' => esc_html__( 'Footer copyright notice', 'maxwp' ), 'section' => 'sc_maxwp_footer', 'settings' => 'maxwp_options[footer_text]', 'type' => 'text', ) );

    $wp_customize->add_setting( 'maxwp_options[hide_footer_widgets]', array( 'default' => false, 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'maxwp_sanitize_checkbox', ) );

    $wp_customize->add_control( 'maxwp_hide_footer_widgets_control', array( 'label' => esc_html__( 'Hide Footer Widgets', 'maxwp' ), 'section' => 'sc_maxwp_footer', 'settings' => 'maxwp_options[hide_footer_widgets]', 'type' => 'checkbox', ) );

}