Skip to content

Instantly share code, notes, and snippets.

@cobaltapps
Last active August 29, 2015 14:04
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 cobaltapps/7456abc08ed85e93d7a0 to your computer and use it in GitHub Desktop.
Save cobaltapps/7456abc08ed85e93d7a0 to your computer and use it in GitHub Desktop.
Enqueue Font Awesome Styles
// Add Font Awesome Styles (or Override Dynamik's Font Awesome styles with the latest version)
add_action( 'wp_enqueue_scripts', 'custom_font_awesome_styles', 5 );
function custom_font_awesome_styles() {
wp_enqueue_style( 'font-awesome', '//maxcdn.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