Created
January 21, 2017 18:32
-
-
Save dannydickson/4ad0661e152d9fe87d16326f02a09b9e to your computer and use it in GitHub Desktop.
Import Font Awesome Latest Into WordPress
This file contains hidden or 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
// Load Font Awesome | |
add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' ); | |
function enqueue_font_awesome() { | |
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Most themes are already enqueing other scripts/styles, so for simplicity you could copy just line 5 from this gist into the pre-existing enqueue function.