This is an old version of this answer!
Return to the current answerI ran into a similar issue. This seemed to work for me:
<?php
function my_init_method() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery'
, 'http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js');
}
add_action('init', 'my_init_method');
?>
Merne Asplund | 04/23/10 at 1:17am





