Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active August 29, 2015 14:02
Show Gist options
  • Save wpspeak/7188de10597c442ea340 to your computer and use it in GitHub Desktop.
Save wpspeak/7188de10597c442ea340 to your computer and use it in GitHub Desktop.
Enqueue Octicons icon font in WordPress
<?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