Created
February 3, 2021 18:37
-
-
Save wpmu-authors/76e9ab6f27c66de24d3b0c132521e214 to your computer and use it in GitHub Desktop.
Activate Font Awesome
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
<?php | |
function wmpudev_enqueue_icon_stylesheet() { | |
wp_register_style( 'fontawesome', 'http:////maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css' ); | |
wp_enqueue_style( 'fontawesome'); | |
} | |
add_action( 'wp_enqueue_scripts', 'wmpudev_enqueue_icon_stylesheet' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment