Created
December 20, 2018 23:07
-
-
Save danielmcclure/d1b8e492bedcced7c8016ed37f197623 to your computer and use it in GitHub Desktop.
Enqueue Font Awesome 5 in WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Enqueue Font Awesome 5 in WordPress | |
function tme_load_font_awesome() { | |
// You can find the current URL for the latest version here: https://fontawesome.com/start | |
wp_enqueue_style( 'font-awesome-free', '//use.fontawesome.com/releases/v5.6.3/css/all.css' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'tme_load_font_awesome' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment