add_section( 'aster_vlogger_breadcrumb', array( 'title' => esc_html__( 'Breadcrumb', 'aster-vlogger' ), 'panel' => 'aster_vlogger_theme_options', ) ); // Breadcrumb - Enable Breadcrumb. $wp_customize->add_setting( 'aster_vlogger_enable_breadcrumb', array( 'sanitize_callback' => 'aster_vlogger_sanitize_switch', 'default' => true, ) ); $wp_customize->add_control( new Aster_Vlogger_Toggle_Switch_Custom_Control( $wp_customize, 'aster_vlogger_enable_breadcrumb', array( 'label' => esc_html__( 'Enable Breadcrumb', 'aster-vlogger' ), 'section' => 'aster_vlogger_breadcrumb', ) ) ); // Breadcrumb - Separator. $wp_customize->add_setting( 'aster_vlogger_breadcrumb_separator', array( 'sanitize_callback' => 'sanitize_text_field', 'default' => '/', ) ); $wp_customize->add_control( 'aster_vlogger_breadcrumb_separator', array( 'label' => esc_html__( 'Separator', 'aster-vlogger' ), 'active_callback' => 'aster_vlogger_is_breadcrumb_enabled', 'section' => 'aster_vlogger_breadcrumb', ) );