Created
November 15, 2018 15:31
-
-
Save m1ndspark/9436ec31c8d2144c1746875d3dd1874f to your computer and use it in GitHub Desktop.
Add Latest FontAwesome FREE to WP Site
This file contains hidden or 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
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