Caranya gampang, tinggal kopi pastekan kode dibawah ini di paling bawah script fungtions.php tempalte editor.
//Making jQuery Google API
function modify_jquery() {
 if (!is_admin()) {
  // comment out the next two lines to load the local copy of jQuery
  wp_deregister_script('jquery');
  wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js', false, '1.6.1');
  wp_enqueue_script('jquery');
 }
}
add_action('init', 'modify_jquery');

Leave a Reply