Created
April 20, 2018 15:56
-
-
Save lizardking8610/86b09c5ed01485af0b5c41409633133b to your computer and use it in GitHub Desktop.
Enqueue Ionicons 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
//* Enqueue Ionicons | |
add_action( 'wp_enqueue_scripts', 'bg_enqueue_ionicons' ); | |
function bg_enqueue_ionicons() { | |
wp_enqueue_style( 'ionicons', '//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css', array(), CHILD_THEME_VERSION ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment