Skip to content

Instantly share code, notes, and snippets.

@ifamily
Last active August 29, 2015 14:24
Show Gist options
  • Save ifamily/e01a0639a3e20f92dc36 to your computer and use it in GitHub Desktop.
Save ifamily/e01a0639a3e20f92dc36 to your computer and use it in GitHub Desktop.
Enqueue Font Awesome to WordPress
<?php
//* Enqueue Font Awesome
add_action( 'wp_enqueue_scripts', 'ifamily_load_fontawesome' );
function ifamily_load_fontawesome() {
wp_enqueue_style( 'font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css', array(), '4.3.0' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment