Skip to content

Instantly share code, notes, and snippets.

@JohnBunka
Last active August 27, 2015 20:58
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/9b4cff81bf964f3b869f to your computer and use it in GitHub Desktop.
Save JohnBunka/9b4cff81bf964f3b869f to your computer and use it in GitHub Desktop.
How to use Font Awesome icons with Genesis in WordPress
//* 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' );
}
@JohnBunka
Copy link
Author

Make Font Awesome available in Genesis in the functions.php file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment