Skip to content

Instantly share code, notes, and snippets.

@soutar
Created May 20, 2014 12:23
Show Gist options
  • Save soutar/76e169be081a4e04a5d5 to your computer and use it in GitHub Desktop.
Save soutar/76e169be081a4e04a5d5 to your computer and use it in GitHub Desktop.
Enqueue Font Awesome styles
<?php
function include_font_awesome() {
wp_enqueue_style('font_awesome', '//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css');
}
/* When 'wp_enqueue_scripts' takes place, trigger this function */
add_action('wp_enqueue_scripts', 'include_font_awesome', 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment