Home / Widgets / disable Google Fonts in Breakdance
Duplicate Snippet

Embed Snippet on Your Site

disable Google Fonts in Breakdance

disable Google Fonts in Breakdance

Code Preview
php
<?php
add_filter("breakdance_register_font", function ($font) {
    $isGoogleFont = !!$font['dependencies']['googleFonts'];
    if ($isGoogleFont) {
        return false;
    }
    return $font;
});

Comments

Add a Comment