Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Last active May 24, 2016 12:02
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 frankschrijvers/3537f8474e78dc510099fb3535678a56 to your computer and use it in GitHub Desktop.
Save frankschrijvers/3537f8474e78dc510099fb3535678a56 to your computer and use it in GitHub Desktop.
Add font awesome to genesis theme
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Required Fonts
add_action( 'wp_enqueue_scripts', 'wps_load_font_awesome' );
function wps_load_font_awesome() {
wp_enqueue_style( 'fontawesome', '//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css', array(), '4.6.1' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment