Skip to content

Instantly share code, notes, and snippets.

@coquer
Created February 25, 2015 11:11
Show Gist options
  • Save coquer/6bd0c7d2aed505f5a21a to your computer and use it in GitHub Desktop.
Save coquer/6bd0c7d2aed505f5a21a to your computer and use it in GitHub Desktop.
Function to be added
function addCustomScripts() {
wp_enqueue_script( 'gray-scale-functions', get_template_directory_uri().'/js/functions.js', array( 'jquery' ), false, false);
wp_enqueue_script( 'gray-scale', get_template_directory_uri().'/js/grayscale.js', array( 'jquery' ), false, false);
}
add_action( 'wp_enqueue_scripts', 'addCustomScripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment