Enqueueing jQuery in WordPress — a practical guide to WordPress enqueue jQuery with clear examples you can reuse in real projects.
jQuery Tutorial Series (77/101). Prefer one article? Read the complete jQuery tutorial.
Short description
Never hardcode core jQuery in themes — use the dependency system.
enqueue
wp_enqueue_script(
'theme-app',
get_template_directory_uri() . '/assets/js/app.js',
array('jquery'),
'1.0.0',
true
);