Skip to content

Instantly share code, notes, and snippets.

@ifamily
Created May 19, 2014 09:52
Show Gist options
  • Save ifamily/c854c9cf795780505a23 to your computer and use it in GitHub Desktop.
Save ifamily/c854c9cf795780505a23 to your computer and use it in GitHub Desktop.
Register and load Font Awesome CSS files in WordPress using a CDN
//* Register and load Font Awesome CSS files using a CDN.
add_action( 'wp_enqueue_scripts', 'ifamily_enqueue_awesome' );
function ifamily_enqueue_awesome() {
wp_enqueue_style( 'ifamily-font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css', array(), '4.1.0' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment