Skip to content

Instantly share code, notes, and snippets.

Created January 13, 2016 12:43
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 anonymous/47b64ec444b2282167b6 to your computer and use it in GitHub Desktop.
Save anonymous/47b64ec444b2282167b6 to your computer and use it in GitHub Desktop.
<?php
/**
* Proper way to enqueue scripts and styles
*/
function ah_font_awesome_style() {
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/font-awesome.min.css' );
}
add_action( 'wp_enqueue_scripts', 'ah_font_awesome_style' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment