Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jerrickhakim/a6da5b213bb8e342cbb38dad684d7adc to your computer and use it in GitHub Desktop.
Save jerrickhakim/a6da5b213bb8e342cbb38dad684d7adc to your computer and use it in GitHub Desktop.
Load FontAwesome in functions.php file | WordPress
//LOAD FONT AWESOME
add_action( 'wp_enqueue_scripts', 'enqueue_load_fa' );
function enqueue_load_fa() {
wp_enqueue_style( 'load-fa', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' );
}
// END LOAD FONT AWESOME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment