Skip to content

Instantly share code, notes, and snippets.

@m1ndspark
Created November 15, 2018 15:31
Show Gist options
  • Save m1ndspark/9436ec31c8d2144c1746875d3dd1874f to your computer and use it in GitHub Desktop.
Save m1ndspark/9436ec31c8d2144c1746875d3dd1874f to your computer and use it in GitHub Desktop.
Add Latest FontAwesome FREE to WP Site
add_action( 'wp_enqueue_scripts', 'custom_load_font_awesome' );
/**
* Enqueue Font Awesome.
*/
function custom_load_font_awesome() {
wp_enqueue_style( 'font-awesome-free', '//use.fontawesome.com/releases/v5.2.0/css/all.css' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment