How to Disable Google Fonts in Oxygen 6 and Breakdance

Cover image for the tutorial Disable Google Fonts in Oxygen 6 and Breakdance, featuring the Oxygen Builder logo, Breakdance Builder logo and Phe Ledwell. - WinuSoft | Top UK Web Development Company

Sometimes, you might want to disable Google Fonts so that you can add your own fonts and have them load locally from your site.

This is surprisingly easy to do. All you need is the bellow snippet, which can be added to a snippets type plugin, such as WPCodeBox (paid) or Code Snippets (free).

This works with Oxygen 6 and Breakdance.

<?php

add_filter("breakdance_register_font", function ($font) {

    // disable all Google Fonts
    $isGoogleFont = !!$font['dependencies']['googleFonts'];
    
    if ($isGoogleFont) {
        return false;
    }

    return $font;
});