Created
May 19, 2014 09:52
-
-
Save ifamily/c854c9cf795780505a23 to your computer and use it in GitHub Desktop.
Register and load Font Awesome CSS files in WordPress using a CDN
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
//* Register and load Font Awesome CSS files using a CDN. | |
add_action( 'wp_enqueue_scripts', 'ifamily_enqueue_awesome' ); | |
function ifamily_enqueue_awesome() { | |
wp_enqueue_style( 'ifamily-font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css', array(), '4.1.0' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment