Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Last active May 24, 2016 12:24
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/1b7593ac9b9ec1a644bc to your computer and use it in GitHub Desktop.
Save frankschrijvers/1b7593ac9b9ec1a644bc to your computer and use it in GitHub Desktop.
Add Font Awesome
// 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