Skip to content

Instantly share code, notes, and snippets.

@topleague
Created September 14, 2019 14:08
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 topleague/58466faaab6bf881679f3c9d0733e091 to your computer and use it in GitHub Desktop.
Save topleague/58466faaab6bf881679f3c9d0733e091 to your computer and use it in GitHub Desktop.
Load Font Awesome in Genesis
//* Load Font Awesome
add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' );
function enqueue_font_awesome() {
wp_enqueue_style( 'font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css', array(), '4.6.3' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment