Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created May 9, 2018 13:29
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 stuartduff/4678d3d1e5ba219ceb6ababdb4680967 to your computer and use it in GitHub Desktop.
Save stuartduff/4678d3d1e5ba219ceb6ababdb4680967 to your computer and use it in GitHub Desktop.
Add fontawesome 5 CSS to head area of WordPress
function add_fontawesome5_to_head() {
echo '<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.12/css/all.css" integrity="sha384-G0fIWCsCzJIMAVNQPfjH08cyYaUtMwjJwqiRKxxE/rx96Uroj1BtIQ6MLJuheaO9" crossorigin="anonymous">';
}
add_action( 'wp_head', 'add_fontawesome5_to_head' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment