Devido ao tráfego, transferi as imagens e os ficheiros Flash para outro servidor e configurei as ligações.
Enquanto navegava, encontrei o código abaixo para ligar o jquery ao Google.
Ficheiro alterado: tema/functions.php
[PHP]
//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.4.4/jquery.min.js’, false,
‘1.4.4’);
wp_enqueue_script(‘jquery’);
}
}
add_action(‘init’, ‘modify_jquery’);
[/PHP]



