Skip to content

Instantly share code, notes, and snippets.

@JohnBunka
Created March 20, 2019 20:23
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 JohnBunka/f3696ca25bbfcc465db5a456c922af5f to your computer and use it in GitHub Desktop.
Save JohnBunka/f3696ca25bbfcc465db5a456c922af5f to your computer and use it in GitHub Desktop.
Load Font Awesome Locally
//enqueues our locally supplied font awesome stylesheet
function enqueue_our_required_stylesheets(){
wp_enqueue_style('font-awesome', get_stylesheet_directory_uri() . '/css/font-awesome.css');
}
add_action('wp_enqueue_scripts','enqueue_our_required_stylesheets');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment