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