Last active
August 29, 2015 14:24
-
-
Save ifamily/e01a0639a3e20f92dc36 to your computer and use it in GitHub Desktop.
Enqueue Font Awesome to WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Enqueue Font Awesome | |
add_action( 'wp_enqueue_scripts', 'ifamily_load_fontawesome' ); | |
function ifamily_load_fontawesome() { | |
wp_enqueue_style( 'font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css', array(), '4.3.0' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment