Skip to content

Instantly share code, notes, and snippets.

@Edwardtonnn
Last active March 28, 2019 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Edwardtonnn/40a0979807ff7b2f7e81341638034666 to your computer and use it in GitHub Desktop.
Save Edwardtonnn/40a0979807ff7b2f7e81341638034666 to your computer and use it in GitHub Desktop.
enqueue scripts
(function($) {
// $ Works! You can test it with next line if you like
console.log("Custom JS Running");
})( jQuery );
<?php
wp_enqueue_script(
'custom-js',
get_stylesheet_directory_uri() . '/js/custom.js',
array('jquery'),
false,
'all'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment