add_section( 'sc_blog2019_footer', array( 'title' => esc_html__( 'Footer', 'blog2019' ), 'panel' => 'blog2019_main_options_panel', 'priority' => 440 ) ); $wp_customize->add_setting( 'blog2019_options[footer_text]', array( 'default' => '', 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog2019_sanitize_html', ) ); $wp_customize->add_control( 'blog2019_footer_text_control', array( 'label' => esc_html__( 'Footer copyright notice', 'blog2019' ), 'section' => 'sc_blog2019_footer', 'settings' => 'blog2019_options[footer_text]', 'type' => 'text', ) ); $wp_customize->add_setting( 'blog2019_options[hide_footer_widgets]', array( 'default' => false, 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog2019_sanitize_checkbox', ) ); $wp_customize->add_control( 'blog2019_hide_footer_widgets_control', array( 'label' => esc_html__( 'Hide Footer Widgets', 'blog2019' ), 'section' => 'sc_blog2019_footer', 'settings' => 'blog2019_options[hide_footer_widgets]', 'type' => 'checkbox', ) ); }