Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Last active August 29, 2015 13:57
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/9496555 to your computer and use it in GitHub Desktop.
Save frankschrijvers/9496555 to your computer and use it in GitHub Desktop.
<?php
/**
* Register and load font awesome
*
* @author Themebuilder.nl
*/
add_action( 'wp_enqueue_scripts', 'prefix_enqueue_awesome' );
function prefix_enqueue_awesome() {
wp_enqueue_style( 'prefix-font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css', array(), '4.0.3' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment