Created
January 13, 2016 16:00
-
-
Save CoachBirgit/3f0c6da968f1cb129954 to your computer and use it in GitHub Desktop.
Enqueue Ionicons on your site with the Genesis Framework.
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 | |
//* Do NOT include the opening php tag | |
//* 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