This code snippet supports a number of our articles where Font Awesome is required or recommended. Font Awesome gives you scalable vector icons that can instantly be customized - size, color, drop shadow, and anything that can be done with the power of CSS. At the time of writing there's 675 icons.
Copy and paste the WordPress function into your theme's functions.php
file or, if you sensibly have one installed, your custom functions plugin.
1
<?php
2
/*
3
Using Font Awesome in WordPress
4
http://www.beliefmedia.com/code/wp-snippets/font-awesome-wordpress
5
*/
6
7
function beliefmedia_enqueue_font_awesome() {
8
wp_enqueue_style('load-fa', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css');
9
}
10
Full usage details may be found on the FA website.