Skip to content

Instantly share code, notes, and snippets.

@rachelmccollin
Last active February 1, 2018 22:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rachelmccollin/f3e8b32c0d5c7ae472e8 to your computer and use it in GitHub Desktop.
Save rachelmccollin/f3e8b32c0d5c7ae472e8 to your computer and use it in GitHub Desktop.
WPMUDEV Creating Menu Icons
<?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