Are you looking to disable Google Fonts on your WordPress website? You are in the right place. In this guide, we will help you step-by-step.
Why Disable Google Fonts?
Sometimes, you may want to disable Google Fonts. Why? There are several reasons:
- Speed: Loading fewer resources can make your site faster.
- Privacy: Some users prefer not to use Google services.
- Customization: You might want to use different fonts.

Credit: www.bluehost.com
Step-by-Step Guide to Disable Google Fonts
Follow these steps to disable Google Fonts on your WordPress website:
Step 1: Backup Your Website
Before making any changes, always backup your website. This way, you can restore it if something goes wrong.
Step 2: Use A Plugin
One of the easiest ways to disable Google Fonts is by using a plugin. Here are the steps:
- Go to your WordPress dashboard.
- Navigate to Plugins > Add New.
- Search for Disable Google Fonts plugin.
- Click Install Now and then Activate.
That’s it! The plugin will disable Google Fonts for you.
Step 3: Manually Disable Google Fonts
If you prefer not to use a plugin, you can manually disable Google Fonts. Here is how:
Edit Your Theme’s Functions.php File
To edit your theme’s functions.php file, follow these steps:
- Go to your WordPress dashboard.
- Navigate to Appearance > Theme Editor.
- Find the functions.php file on the right side.
- Click on it to open.
Add the following code to the end of the file:
function remove_google_fonts() {
wp_dequeue_style('twentyseventeen-fonts');
wp_deregister_style('twentyseventeen-fonts');
}
add_action('wp_enqueue_scripts', 'remove_google_fonts', 20);
Replace twentyseventeen-fonts with your theme’s Google Fonts handle. You can find it in your theme’s functions.php file.
Step 4: Use Custom Css
You can also use custom CSS to disable Google Fonts. Follow these steps:
- Go to your WordPress dashboard.
- Navigate to Appearance > Customize.
- Click on Additional CSS.
- Add the following CSS code:
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
body {
font-family: Arial, sans-serif;
}
This code will replace Google Fonts with Arial.
Check Your Website
After making changes, check your website. Make sure everything works as expected. You can use tools like Google Chrome DevTools to inspect your site’s fonts.

Credit: fontsplugin.com
Frequently Asked Questions
How Can I Disable Google Fonts In WordPress?
You can disable Google Fonts by using a plugin or editing your theme’s functions. php file.
Why Should I Disable Google Fonts?
Disabling Google Fonts can improve your website’s performance and privacy by reducing external requests.
Which Plugin Disables Google Fonts Easily?
The “Disable Google Fonts” plugin is a popular and easy solution for this task.
Will Disabling Google Fonts Affect My Website Design?
Yes, your website’s typography may change. Use local fonts to maintain design consistency.
Conclusion
Disabling Google Fonts on your WordPress website is easy. You can use a plugin, edit your theme’s functions.php file, or use custom CSS. Remember to always backup your website before making any changes.
We hope this guide helps you disable Google Fonts on your WordPress site. If you have any questions, feel free to ask in the comments below.