Last active
April 26, 2018 04:40
-
-
Save anwerashif/ac8be8e636bf03be3105ffde4c25bf6a to your computer and use it in GitHub Desktop.
Install font awesome on WordPress + Genesis Framework
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
<?php | |
// Do NOT include opening tag. | |
// Enqueue Font Awesome. | |
add_action( 'wp_enqueue_scripts', 'your_site_font_awesome' ); | |
function your_site_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