-
-
Save wpspeak/7518204 to your computer and use it in GitHub Desktop.
Enqueue and Load Font Awesome icon font in 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
<?php | |
/** | |
* Enqueue and Load Font Awesome | |
* | |
* @author WPSpeak.com | |
*/ | |
add_action( 'wp_enqueue_scripts', 'afn_enqueue_awesome' ); | |
function afn_enqueue_awesome() { | |
if ( !is_admin() ) { | |
wp_enqueue_style( 'afn-font-awesome', get_bloginfo( 'stylesheet_directory' ) . '/css/font-awesome.min.css', array(), '4.0.3' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment