Last active
February 1, 2018 22:45
-
-
Save rachelmccollin/f3e8b32c0d5c7ae472e8 to your computer and use it in GitHub Desktop.
WPMUDEV Creating Menu Icons
This file contains 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