Skip to content

Instantly share code, notes, and snippets.

@katmoody
Last active August 29, 2015 14:21
Show Gist options
  • Save katmoody/42e183e19cf595cc317e to your computer and use it in GitHub Desktop.
Save katmoody/42e183e19cf595cc317e to your computer and use it in GitHub Desktop.
Register and Enqueue FontIcons, using native WordPress function
// 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
}
// 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