Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Forked from robneu/wordpress-font-awesome-cdn.php
Last active April 16, 2019 14:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpspeak/7518204 to your computer and use it in GitHub Desktop.
Save wpspeak/7518204 to your computer and use it in GitHub Desktop.
Enqueue and Load Font Awesome icon font in WordPress
<?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