Advertisement
kobial8

jQuery From Wordpress Call

Mar 12th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. Step 01: first make sure it is enabled:  <?php wp_head(); ?> & <?php wp_footer(); ?>
  2.  
  3. Step 02: Then add the codes in functions.php
  4. function latest_jquery () {
  5.     wp_enqueue_script('jquery');
  6. }
  7. add_action ('init','latest_jquery');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement