add_setting( ALAGU_THEME_SETTINGS . '[h3-typo]', array( 'default' => alagu_get_option( 'h3-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 . '[h3-typo]', array( 'type' => 'dt-typography', 'section' => 'site-h3-section', 'label' => esc_html__( 'H3 Tag', 'alagu'), ) ) ); /** * Option : H3 Color */ $wp_customize->add_setting( ALAGU_THEME_SETTINGS . '[h3-color]', array( 'default' => alagu_get_option( 'h3-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 . '[h3-color]', array( 'label' => esc_html__( 'Color', 'alagu' ), 'section' => 'site-h3-section', ) ) );