Created
October 27, 2013 22:37
-
-
Save WebEndevSnippets/7188764 to your computer and use it in GitHub Desktop.
WordPress: Enqueue Font Awesome Stylesheet from MaxCDN
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
add_action( 'wp_enqueue_scripts', 'webendev_load_font_awesome', 99 ); | |
/** | |
* Enqueue Font Awesome Stylesheet from MaxCDN | |
* | |
*/ | |
function webendev_load_font_awesome() { | |
if ( ! is_admin() ) { | |
wp_enqueue_style( 'font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.0.1/css/font-awesome.css', null, '4.0.1' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment