Created
February 25, 2015 11:11
-
-
Save coquer/6bd0c7d2aed505f5a21a to your computer and use it in GitHub Desktop.
Function to be added
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
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