Skip to content

Instantly share code, notes, and snippets.

@anwerashif
Last active April 26, 2018 04:40
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 anwerashif/ac8be8e636bf03be3105ffde4c25bf6a to your computer and use it in GitHub Desktop.
Save anwerashif/ac8be8e636bf03be3105ffde4c25bf6a to your computer and use it in GitHub Desktop.
Install font awesome on WordPress + Genesis Framework
<?php
// Do NOT include opening tag.
// Enqueue Font Awesome.
add_action( 'wp_enqueue_scripts', 'your_site_font_awesome' );
function your_site_font_awesome() {
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment