Skip to content

Instantly share code, notes, and snippets.

@mikeott
Last active May 11, 2022 03:21
Show Gist options
  • Select an option

  • Save mikeott/d49412f4fb48335d3e92e7451cd1d1ff to your computer and use it in GitHub Desktop.

Select an option

Save mikeott/d49412f4fb48335d3e92e7451cd1d1ff to your computer and use it in GitHub Desktop.
Enqueue jQuery
/*
Enqueue jQuery
Uses the WordPress built-on jQuery
*/
function my_jquery_method() {
wp_enqueue_script( 'jquery');
}
add_action( 'wp_enqueue_scripts', 'my_jquery_method' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment