Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created December 16, 2023 17:54
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 braddalton/d5ca9509d484583ce6303b2ba0bac001 to your computer and use it in GitHub Desktop.
Save braddalton/d5ca9509d484583ce6303b2ba0bac001 to your computer and use it in GitHub Desktop.
Load jQuery
function enqueue_custom_scripts() {
wp_enqueue_script('custom-script', get_stylesheet_directory_uri() . '/js/custom-script.js', array('jquery'), '1.0', true);
}
add_action('wp_enqueue_scripts', 'enqueue_custom_scripts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment