Skip to content

Instantly share code, notes, and snippets.

@caseydriscoll
Created May 12, 2015 14:58
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 caseydriscoll/e5d3a2224eeadbd170fd to your computer and use it in GitHub Desktop.
Save caseydriscoll/e5d3a2224eeadbd170fd to your computer and use it in GitHub Desktop.
Enqueue Font Awesome
add_action( 'wp_enqueue_scripts', 'genesis_parent_theme_enqueue_styles' );
function genesis_parent_theme_enqueue_styles() {
wp_enqueue_style( 'patchworks-fontawesome', patchworks_fontawesome() );
}
function patchworks_fontawesome() {
return 'https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment