Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
jQuery

Enqueueing jQuery in WordPress

Register scripts with wp_enqueue_script and depend on jquery.

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
);

Leave a reply

Your email address will not be published. Required fields are marked *