add_section( 'bansta_footer_section', [ 'title' => __( 'Footer Option','bansta' ), 'priority' => 100 ]); //Footer background image $wp_customize->add_setting( 'bansta_footer_background_image', [ 'capability' => 'edit_theme_options', 'type' => 'theme_mod', 'sanitize_callback' => 'esc_url_raw', 'transport' => 'postMessage', ]); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'bansta_footer_background_image', [ 'label' => __('Background image', 'bansta'), 'settings' => 'bansta_footer_background_image', 'section' => 'bansta_footer_section', ])); $wp_customize->add_setting( 'bansta_footer_grid', [ 'default' => $bansta_default['footer_grid'], 'capability' => 'edit_theme_options', 'type' => 'theme_mod', 'sanitize_callback' => 'bansta_sanitize_select', 'transport' => 'refresh', ]); $wp_customize->add_control( 'bansta_footer_grid', [ 'label' => __( 'No. of Widgets', 'bansta' ), 'settings' => 'bansta_footer_grid', 'section' => 'bansta_footer_section', 'type' => 'select', 'choices' => [ 3 => __( 'Three', 'bansta' ), 4 => __( 'Four', 'bansta' ) ] ]); //Footer background color $wp_customize->add_setting( 'bansta_footer_color', [ 'default' => $bansta_default['footer_color'], 'capability' => 'edit_theme_options', 'type' => 'theme_mod', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', ]); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'bansta_footer_color', [ 'label' => __('Footer widget color', 'bansta'), 'settings' => 'bansta_footer_color', 'section' => 'bansta_footer_section', ])); //Copyright background color $wp_customize->add_setting( 'bansta_copyright_color', [ 'default' => $bansta_default['copyright_color'], 'capability' => 'edit_theme_options', 'type' => 'theme_mod', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', ]); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'bansta_copyright_color', [ 'label' => __('Copyright color', 'bansta'), 'settings' => 'bansta_copyright_color', 'section' => 'bansta_footer_section', ]));