add_setting( ALAGU_THEME_SETTINGS . '[h6-typo]', array( 'default' => alagu_get_option( 'h6-typo' ), 'type' => 'option', 'sanitize_callback' => array( 'ALAGU_Customizer_Sanitizes', 'sanitize_tweek' ) ) ); $wp_customize->add_control( new ALAGU_Customize_Control_Typography( $wp_customize, ALAGU_THEME_SETTINGS . '[h6-typo]', array( 'type' => 'dt-typography', 'section' => 'site-h6-section', 'label' => esc_html__( 'H6 Tag', 'alagu'), ) ) ); /** * Option : H6 Color */ $wp_customize->add_setting( ALAGU_THEME_SETTINGS . '[h6-color]', array( 'default' => alagu_get_option( 'h6-color' ), 'type' => 'option', 'sanitize_callback' => array( 'ALAGU_Customizer_Sanitizes', 'sanitize_hex_color' ), ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, ALAGU_THEME_SETTINGS . '[h6-color]', array( 'label' => esc_html__( 'Color', 'alagu' ), 'section' => 'site-h6-section', ) ) );