Skip to content

Instantly share code, notes, and snippets.

@JohnBunka
Created November 13, 2015 23:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JohnBunka/28f51a9d19659decf41e to your computer and use it in GitHub Desktop.
Save JohnBunka/28f51a9d19659decf41e to your computer and use it in GitHub Desktop.
How to Add Font Awesome Icons to Your WordPress Menu without a plugin
//* Make Font Awesome available
add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' );
function enqueue_font_awesome() {
wp_enqueue_style( 'font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.css' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment