Created
July 19, 2018 09:54
-
-
Save MjHead/2a5f1a9b8e5741646a65f00e979e4a11 to your computer and use it in GitHub Desktop.
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
/** | |
* Enqueue Fontawesome icon font into your website. | |
* Before adding this code, please ensure that you put Fontawesome CSS and webfont into fontawesome folder in your theme. | |
*/ | |
function jet_enqueue_icon_font() { | |
wp_enqueue_style( 'fontawesome5', get_theme_file_uri( 'fontawesome/css/fontawesome.min' ) ); | |
} | |
add_action( 'wp_enqueue_scripts', 'jet_enqueue_icon_font' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment