Created
May 5, 2014 15:23
-
-
Save wpspeak/542c626018a3330a9458 to your computer and use it in GitHub Desktop.
Register Dashicons in WordPress
This file contains hidden or 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 | |
//* Enqueue Dashicons icon font | |
add_action( 'wp_enqueue_scripts', 'afn_dashicons_icon_font' ); | |
function afn_dashicons_icon_font() { | |
wp_enqueue_style( 'dashicons' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment