Disable Google Fonts
It is possible to disable Google Fonts in Breakdance using the breakdance_register_font hook.
Example:
<?php
add_filter("breakdance_register_font", function ($font) {
$isGoogleFont = !!$font['dependencies']['googleFonts'];
if ($isGoogleFont) {
return false;
}
return $font;
});Please note that when using this hook, you will also want to remove Google Fonts from any Global Settings and elements. You can then add your own Custom Fonts.
Updated on: March 13, 2026
Get Oxygen
Oxygen is the best way to visually design WordPress websites.
If you can build it with WordPress, you can design it with Oxygen.
Start Designing