Advertisement
lberelson

jQuery Accordion WP - functions.php

Sep 11th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. if(!is_admin()){
  2.     wp_deregister_script('jquery');
  3.     wp_register_script('jquery', ('https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js'), false, '1.6.4');
  4.     wp_enqueue_script('jquery');
  5.     wp_deregister_script('jquery-ui');
  6.     wp_register_script('jquery-ui', ('https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js'), false, '1.8.16');
  7.     wp_enqueue_script('jquery-ui');  
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement