Typography and other banding elements create a good first impression, set the mood for your site’s visitors, and establish your brand’s identity. Studies have also found that fonts affect readers’ ability to learn, recall information, and memorize texts. If you just installed a WordPress theme or have some CSS and coding experience, we’ll show you several options you can use to change fonts in WordPress.

How to Change Fonts in WordPress

How to Change Fonts in WordPress

How to Change Fonts in WordPress

There are three main options available for you to change fonts in WordPress:

Use web fonts like Google Fonts, Fonts.com, or Adobe Edge Web Fonts, which are hosted on a third-party siteCode web fonts into your theme and enqueue themHost fonts on your site and add them to your theme

1. How to Change Fonts in WordPress Using Web Fonts

Using web fonts is an easier and quicker way to change fonts in WordPress than downloading and uploading font files. With this option, you can access a variety of fonts without updating them each time there’s a change, and it doesn’t hog server space on your hosting. The fonts are served directly from the provider’s servers using a plugin or by adding code to your site. Make sure the web fonts you choose for your site match your brand identity, are easy to read for body text, are familiar to website visitors, and convey the kind of mood and image that you want. You can add web fonts using a WordPress plugin or manually by adding a few lines of code to your site. Let’s explore both options.

How to Add Web Fonts Using a WordPress Plugin

Depending on the web font you’ve chosen, you can use a WordPress plugin to access the library of fonts and pick out the one you want on your site. For this guide, we chose Google Fonts and used the Google Fonts Typography plugin.

Under Basic Settings, set the default font for your body text, headings, and buttons.

Under Advanced Settings, configure your site title and description, menu, headings and content, sidebar, and footer.

Uncheck any unwanted font weights in the Font Loading section to avoid slowing down your site.

If there are fonts on your site that aren’t displaying or working properly, use the Debugging section to troubleshoot. Note: If you forget to select publish in the Customizer, you’ll lose all the changes you’ve made.

How to Add Web Fonts Using Code

You can install and use web fonts if you have access to your theme’s code. This is a manual alternative to adding an extra plugin, but it’s not complicated if you follow the steps carefully. However, there are different steps to take if you’re using a theme from the WordPress theme directory or a customized theme. If you bought a theme from the WordPress theme directory, create a child theme and then give it the style.css and functions.php file. It’s easier if you have a customized theme as you can edit the stylesheet and functions file from your theme.

2. How to Change Fonts in WordPress by Hosting Fonts

Hosting fonts on your own servers helps you optimize the performance of your web fonts, but it’s also a more secure way of doing it instead of pulling in resources from third-party sites. Google Fonts and other web fonts allow you to download fonts for use as locally hosted fonts, but you can still download other fonts to your computer provided the licenses permit you to do so. @font-face { font-family: ‘Work Sans’; src: url( “fonts/Work Sans-Medium.ttf”) format(‘woff’); /* medium / font-weight: normal; font-style: normal;} @font-face { font-family: ‘Work Sans’; src: url( “fonts/Work Sans-Bold.ttf”) format(‘woff’); / medium / font-weight: bold; font-style: normal;} @font-face { font-family: ‘Cambria’; src: url( “fonts/Cambria.ttf”) format(‘woff’); / medium */ font-weight: normal; font-style: normal;} Note: Using @fontface allows you to use bold, italics and other variations of your font, after which you can specify the weight or style for each font. body { font-family: ‘Work Sans’, Arial, sans-serif; src: url( “/fonts/Work Sans-Medium.ttf” );} h1, h2, h3 { font-family: ‘Cambria’, Times New Roman, serif;}

Customize Your WordPress Typography

Customize Your WordPress Typography

Customize Your WordPress Typography

Changing fonts in WordPress is a great idea to improve the branding and user experience. It’s not a straightforward task, but you’ll have more control over your theme. Were you able to customize your site’s fonts using the steps using the tips in this guide? Tell us in the comments.