add_section( 'buzzhub_general_section', array( 'title' => esc_html__( 'General', 'buzzhub' ), 'panel' => 'buzzhub_general_panel', ) ); // Breadcrumb enable setting $wp_customize->add_setting( 'buzzhub_breadcrumb_enable', array( 'sanitize_callback' => 'buzzhub_sanitize_checkbox', 'default' => true, ) ); $wp_customize->add_control( 'buzzhub_breadcrumb_enable', array( 'section' => 'buzzhub_general_section', 'label' => esc_html__( 'Enable breadcrumb.', 'buzzhub' ), 'type' => 'checkbox', ) ); // Backtop enable setting $wp_customize->add_setting( 'buzzhub_back_to_top_enable', array( 'sanitize_callback' => 'buzzhub_sanitize_checkbox', 'default' => true, ) ); $wp_customize->add_control( 'buzzhub_back_to_top_enable', array( 'section' => 'buzzhub_general_section', 'label' => esc_html__( 'Enable Scroll up.', 'buzzhub' ), 'type' => 'checkbox', ) );