add_section( 'ansupa_footer_section', array( 'title' => esc_html__( 'Footer', 'ansupa' ), 'panel' => 'ansupa_general_panel', ) ); // Footer text enable setting $wp_customize->add_setting( 'ansupa_enable_footer_text', array( 'sanitize_callback' => 'ansupa_sanitize_checkbox', 'default' => true, ) ); $wp_customize->add_control( 'ansupa_enable_footer_text', array( 'section' => 'ansupa_footer_section', 'label' => esc_html__( 'Enable footer text.', 'ansupa' ), 'type' => 'checkbox', ) ); // Footer copyright setting $wp_customize->add_setting( 'ansupa_copyright_txt', array( 'sanitize_callback' => 'ansupa_sanitize_html', 'default' => $default['ansupa_copyright_txt'], ) ); $wp_customize->add_control( 'ansupa_copyright_txt', array( 'section' => 'ansupa_footer_section', 'label' => esc_html__( 'Copyright text:', 'ansupa' ), 'type' => 'textarea', 'active_callback' => 'ansupa_if_footer_text_enable', ) );