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