Ever see those nifty icons on other people’s WordPress sites? The ones that grab your attention and give you added context for what you’re looking at. Pencils, hamburger icons, those sorts of things…
You know, the graphics that look something like this?
If you haven’t been living in a cave, I’m willing to bet that you’re nodding your head right now.
They’ve become popular because they’re a clever way to add both character and context to your WordPress site. Yup – they’re not just for fun, they actually have some very real benefits to user experience that I’ll discuss below.
Then, after the benefits, I’ll show you how to add Font Awesome icons to WordPress both manually and with some handy plugins.
Font Awesome is a popular, modern-looking icon set. Essentially, it’s thousands of different icons combined into one pack, which you can then insert into your WordPress site.
Font Awesome icons are great because they function much like any regular font you use. That means they’re:
It’s also easy to add Font Awesome icons to WordPress, thanks to a large support base.
At first, I just thought that Font Awesome icons made your website look super cool. But then I actually thought about how I browse the web in this mobile-centric world. And that got me looking into the usability of icons like Font Awesome.
And what do you know? Iconic (!) user experience researchers Nielsen Norman Group (NNG) have actually delved into this very issue.
It turns out, when you incorporate icons into your website’s design, you’re not just making it look cool. You’re also:
But when you use icons, always remember that you should still provide a text label to go along with them. Plenty of research says that icons alone can confuse readers. But when you include them as a part of the structure of your page, they enhance usability and make your page more aesthetically pleasing.
Ok, so you can use a plugin to add Font Awesome icons. It will let you insert them in WordPress using shortcodes, though you’ll still need to manually style them. I’ll cover that in the next section. But for those of you who prefer a more hands-on approach, it’s actually really easy to insert Font Awesome icons manually.
Essentially, all you need to do is add the Font Awesome stylesheet to your site. Then you can insert and style your icons using CSS. Let’s get into it…
The Font Awesome stylesheet is a constantly updated list of the latest icons. You can add it to your site in one of two ways:
No matter which option you choose, the following steps will be the same. The only thing that will change is the actual URL to the stylesheet.
To download the stylesheet, head here, then upload it to your site via FTP and copy the file path.
Otherwise, just use this URL to the external Bootstrap CDN stylesheet: https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css
Then, you need to add this code to the functions.php file of your child theme (I hope you’re using a child theme!).
add_action( 'wp_enqueue_scripts', 'enqueue_load_fa' );
function enqueue_load_fa() {
wp_enqueue_style( 'load-fa', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' );
}
If you uploaded the stylesheet to your site, all you need to do is replace the link to Bootstrap CDN with the URL to the stylesheet hosted on your site.
It should look something like this:
While some people will tell you to just insert the link to the stylesheet in your header.php file, don’t do that. While it will probably still work, enqueueing it like this is the proper way to do it.
Once you’ve added the stylesheet, you’re ready to start including Font Awesome icons in WordPress. It’s really quite simple. To add any basic icon, you just need this snippet of code:
<i class="ICON NAME" aria-hidden="true"></i>
So where to find the ICON NAME? Easy, just head to Font Awesome’s website and browse or search for icons:
Clicking on an icon will take you to its dedicated page. Then, just scroll down and find the HTML code:
If you’re looking to use the icons in posts, you’ll need to make sure to add them to the Text tab of the WordPress Editor. For example, this addition to the Text tab:
Renders this on the frontend:
As you can see in the example above, the default icon size is very small. Most of the time, you’ll want your icons to be a little larger. Luckily, that’s super easy to do with CSS (remember how I told you it’s just like a font!).
To make your icon larger, you just need to add a simple addition to the icon class. For example, to make the address book icon I used above three times larger, you just need to add “fa-3x” to the end of the class like this:
<li><i class="fa fa-address-book fa-3x"></i>
And that gives you this:
You can also rotate icons, animate icons, and lots more. For a full list of all the manipulations that you can make, you should check out Font Awesome’s Examples page.
If you don’t want to do things manually, you can also use a plugin called Better Font Awesome.
To be honest, I don’t think it saves you that much time over doing things manually. But it does give you a nice shortcode builder in the WordPress Editor.
It’s a free plugin, so you can install and activate it directly from your WordPress dashboard:
Once you activate it, there’s not much to configure. You’ll see a new Insert Icon shortcode builder in the WordPress Editor. Just click it, filter your icons, and insert your desired choice:
To style your icons, you’ll need to use the same classes I showed you for the manual example above. For example, to make the icon 3x bigger, you need to add this class to the shortcode:
The fact that you still need to manually style your icons is why I don’t find the plugin that much better than the manual option.
If you want to add Font Awesome icons to actual WordPress menu items, there’s another good plugin called Font Awesome 4 Menus.
Once you activate it, you can add Font Awesome icons to your menu items by just entering the Font Awesome name in the CSS Classes (optional) box:
Just like all of the other options, you can use the same styling options to increase icons’ sizes, animate them, or more.
If you don’t see the CSS Classes box right away, you might need to go to Screen Options and enable it:
Adding Font Awesome icons to WordPress is a great way to improve the aesthetics of your site as well as make it easier for your users to navigate.
My personal preference is to add Font Awesome manually by enqueuing the style sheet in the functions.php file of your child theme. But if you don’t want to deal with it, both the plugin options I provided also make it easy to get started.
If you want some other ways to improve the fonts on your WordPress site, I recommend you also check out our guide to Google Fonts and WordPress.
Trying to figure out how to start an online course so that you can share…
Considering using LearnDash to create online course content with WordPress? LearnDash is a popular WordPress…
WordPress XML files see a lot of use for me as a content creator, and…
If you’re looking for a way to deliver an online course, complete with all the…
Search Engine Optimization (SEO) is crucial for any website that wants to maximize its traffic…
Kinsta is a notable brand in the WordPress hosting space. The standout aspect of the…
View Comments
Thank You, Thank You, Thank You, Thank You, Thank You !
I have been trying to fix FontAwesome on my site for Days !!!!
Job Done - Happy Bunny !!
I prefer wp and divi icons plugin, it's free and has material design icons also..