Created
March 20, 2019 20:24
-
-
Save JohnBunka/84a1d16fbb34619f48c9206922f3d91d to your computer and use it in GitHub Desktop.
Link Font Awesome from hosted CDN
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
//enqueues our external font awesome stylesheet | |
function enqueue_our_required_stylesheets(){ | |
wp_enqueue_style('font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/5.7.2/css/font-awesome.min.css'); | |
} | |
add_action('wp_enqueue_scripts','enqueue_our_required_stylesheets'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment