Created
September 2, 2015 20:05
-
-
Save isotrope/c284dc9e1f0c776fc8ed to your computer and use it in GitHub Desktop.
Steve enqueue scripts
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 | |
add_action( 'wp_enqueue_scripts', 'ss_enqueue_scripts' ); | |
function ss_enqueue_scripts() { | |
wp_enqueue_script( 'isotope', get_stylesheet_directory_uri() . '/js/isotope.pkgd.min.js', array(), CHILD_THEME_VERSION, true ); | |
wp_enqueue_script( 'steve-stuff', get_stylesheet_directory_uri() . '/js/filters.js', array( 'jquery', 'isotope' ), '0.1' , true ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment