Hmmm,what do we have here: 😉
add_action( ‘wp_enqueue_scripts’, ‘mw_theme_enqueue_scripts’ );
function mw_theme_enqueue_scripts() {
if( !is_admin()){
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, (“http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js”), false, ‘1.5.1’, true);
wp_enqueue_script(‘jquery’);
}
}
You’re going to need to remove that blob inside of functions/themes/init.php.
-Chris