Last active
August 29, 2015 14:02
-
-
Save wpspeak/7188de10597c442ea340 to your computer and use it in GitHub Desktop.
Enqueue Octicons 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 Octicons icon font in WordPress | |
add_action( 'wp_enqueue_scripts', 'afn_enqueue_octicons' ); | |
function afn_enqueue_octicons() { | |
wp_enqueue_style( 'afn-octicons', get_bloginfo( 'stylesheet_directory' ) . '/octicons/octicons.css', array(), '2.0.2' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment