Skip to content

Instantly share code, notes, and snippets.

@MjHead
Created July 19, 2018 09:54
Show Gist options
  • Save MjHead/2a5f1a9b8e5741646a65f00e979e4a11 to your computer and use it in GitHub Desktop.
Save MjHead/2a5f1a9b8e5741646a65f00e979e4a11 to your computer and use it in GitHub Desktop.
/**
* 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