Last active
August 29, 2015 14:21
-
-
Save katmoody/42e183e19cf595cc317e to your computer and use it in GitHub Desktop.
Register and Enqueue FontIcons, using native WordPress function
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
// Register fonticon script | |
wp_register_script( 'kat-fonticon', 'https://use.fonticons.com/91a2525c.js', array(), null, false ); | |
//* Enqueue scrip with Altitude Pro theme | |
add_action( 'wp_enqueue_scripts', 'kat_enqueue_scripts_styles' ); | |
function kat_enqueue_scripts_styles() { | |
wp_enqueue_script( 'kat-fonticon' ); | |
// Add other scripts and/or CSS here if it has already been registered | |
} |
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
// Register fonticon script | |
wp_register_script( 'kat-fonticon', 'https://use.fonticons.com/91a2525c.js', array(), null, false ); | |
//* Enqueue scripts and styles | |
add_action( 'wp_enqueue_scripts', 'kat_enqueue_scripts_styles' ); | |
functionkat_enqueue_scripts_styles() { | |
wp_enqueue_script( 'kat-fonticon' ); | |
// Add other scripts and/or CSS here if it has already been registered | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment