Adding Custom Font in Easy Accordion plugin

PHOTO EMBED

Fri Mar 01 2024 03:46:07 GMT+0000 (Coordinated Universal Time)

Saved by @Ria

add_filter( 'eapro_field_typography_customwebfonts', 'eapro_field_typography_customwebfonts_modified' );
if( ! function_exists('eapro_field_typography_customwebfonts_modified')) {
    function eapro_field_typography_customwebfonts_modified() {
        // your custom fonts 
	$custom_fonts = array(
            'Spartan Light',
            'Spartan Regular',
        );
        return $custom_fonts;
    }
}
content_copyCOPY