Cara mengatasi Masalah jQuery setelah upgrade ke WordPress 3.4
Bagi teman2 yang mengalami masalah tampilan script jquery yang tidak bekerja setelah upgrade ke wordpress 3.4, y...
http://ariefbudimann20.blogspot.com/2012/07/cara-mengatasi-masalah-jquery-setelah.html

//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.7.1/jquery.min.js', false, '1.7.1'); wp_enqueue_script('jquery'); } } add_action('init', 'modify_jquery');
Dengan cara ini akan menggantikan sumber dari librayy Jquery kerilis 1.7.1 yang ditanamkan ke WordPress 3.3 sebelumnya.