add_section( 'assemble_blog_header_section', array( 'title' => esc_html__( 'Header Options', 'assemble-blog' ), 'panel' => 'assemble_blog_theme_options_panel', ) ); // Enable Topbar Options. $wp_customize->add_setting( 'assemble_blog_topbar_Section_enable', array( 'default' => true, 'sanitize_callback' => 'assemble_blog_sanitize_checkbox', ) ); $wp_customize->add_control( new Assemble_Blog_Toggle_Checkbox_Custom_control( $wp_customize, 'assemble_blog_topbar_Section_enable', array( 'label' => esc_html__( 'Enable Topbar', 'assemble-blog' ), 'settings' => 'assemble_blog_topbar_Section_enable', 'section' => 'assemble_blog_header_section', 'type' => 'checkbox', ) ) );