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