Skip to content

Instantly share code, notes, and snippets.

@topleague
Created July 1, 2017 15:27
Show Gist options
  • Save topleague/cfa71815943b603a117192404abf230b to your computer and use it in GitHub Desktop.
Save topleague/cfa71815943b603a117192404abf230b 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', '//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment