Skip to content

Instantly share code, notes, and snippets.

@isotrope
Created September 2, 2015 20:05
Show Gist options
  • Save isotrope/c284dc9e1f0c776fc8ed to your computer and use it in GitHub Desktop.
Save isotrope/c284dc9e1f0c776fc8ed to your computer and use it in GitHub Desktop.
Steve enqueue scripts
<?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