*/ function blogwp_footer_options($wp_customize) { $wp_customize->add_section( 'sc_blogwp_footer', array( 'title' => esc_html__( 'Footer', 'blogwp' ), 'panel' => 'blogwp_main_options_panel', 'priority' => 440 ) ); $wp_customize->add_setting( 'blogwp_options[footer_text]', array( 'default' => '', 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blogwp_sanitize_html', ) ); $wp_customize->add_control( 'blogwp_footer_text_control', array( 'label' => esc_html__( 'Footer copyright notice', 'blogwp' ), 'section' => 'sc_blogwp_footer', 'settings' => 'blogwp_options[footer_text]', 'type' => 'text', ) ); $wp_customize->add_setting( 'blogwp_options[hide_footer_widgets]', array( 'default' => false, 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blogwp_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogwp_hide_footer_widgets_control', array( 'label' => esc_html__( 'Hide Footer Widgets', 'blogwp' ), 'section' => 'sc_blogwp_footer', 'settings' => 'blogwp_options[hide_footer_widgets]', 'type' => 'checkbox', ) ); }