Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 3, 2021 18:37
Show Gist options
  • Save wpmu-authors/76e9ab6f27c66de24d3b0c132521e214 to your computer and use it in GitHub Desktop.
Save wpmu-authors/76e9ab6f27c66de24d3b0c132521e214 to your computer and use it in GitHub Desktop.
Activate Font Awesome
<?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