Custom font adding hook for WP Tabs Pro.

PHOTO EMBED

Tue Apr 23 2024 03:55:07 GMT+0000 (Coordinated Universal Time)

Saved by @Ria

add_filter( 'wptabspro_field_typography_customwebfonts', 'wptabspro_field_typography_customwebfonts_modified' );
if( ! function_exists('wptabspro_field_typography_customwebfonts_modified')) {
    function wptabspro_field_typography_customwebfonts_modified() {
        // your custom fonts 
        $custom_fonts = array(
            'use your desired font name',
            'Manrope',
        );
        return $custom_fonts;
    }
}
content_copyCOPY