add_section( 'ansupa_general_section', array( 'title' => esc_html__( 'General', 'ansupa' ), 'panel' => 'ansupa_general_panel', ) ); // Breadcrumb enable setting $wp_customize->add_setting( 'ansupa_breadcrumb_enable', array( 'sanitize_callback' => 'ansupa_sanitize_checkbox', 'default' => true, ) ); $wp_customize->add_control( 'ansupa_breadcrumb_enable', array( 'section' => 'ansupa_general_section', 'label' => esc_html__( 'Enable breadcrumb.', 'ansupa' ), 'type' => 'checkbox', ) ); // Backtop enable setting $wp_customize->add_setting( 'ansupa_back_to_top_enable', array( 'sanitize_callback' => 'ansupa_sanitize_checkbox', 'default' => true, ) ); $wp_customize->add_control( 'ansupa_back_to_top_enable', array( 'section' => 'ansupa_general_section', 'label' => esc_html__( 'Enable Scroll up.', 'ansupa' ), 'type' => 'checkbox', ) );