-1

My question is how I can insert jquery libraries into Wordpress and how can I deal with them.

Thank you.

1
  • Download, register, enqueue, ... take a look at the "WP Dependency API" in Codex, please. Then file an edit and rephrase your question with a specific problem. Thanks. Commented Mar 16, 2015 at 17:34

1 Answer 1

1

WordPress gets delivered with jQuery. All you have to do is tell your theme to wp_enqueue_script() jQuery:

wp_enqueue_script( 'jquery' );

This code belongs into your functions.php. Of course, you can also change which version of jQuery should be loaded, and from which ressource, check this thread for further details.

Afterwards you can put your jQuery-magic into any javascript that is loaded within your theme.

1

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.