Created
June 14, 2016 21:55
-
-
Save jaygidwitz/c24b46e005536c2cf2173d48100d0a98 to your computer and use it in GitHub Desktop.
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 scripts and styles | |
add_action( 'wp_enqueue_scripts', 'studio_issa_enqueue_scripts_styles' ); | |
function studio_issa_enqueue_scripts_styles() { | |
wp_enqueue_script( 'pagefade', get_bloginfo( 'stylesheet_directory' ) . '/js/page-fade.js', array( 'jquery' ), '1.0.0' ); | |
wp_enqueue_script( 'wow-js', get_bloginfo( 'stylesheet_directory' ) . '/js/wow.min.js', array( 'jquery' ), '1.0.0' ); | |
wp_enqueue_script( 'wow-js-init', get_bloginfo( 'stylesheet_directory' ) . '/js/wow-init.js', array( 'jquery' ), '1.0.0' ); | |
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css' ); | |
wp_enqueue_style( 'animate-css', get_bloginfo( 'stylesheet_directory' ) . '/css/animate.css', array(), CHILD_THEME_VERSION ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment