从Google带来JQuery
由于流量,图像和闪存文件被移至另一台服务器并连接。
jQuery在冲浪时找到以下来源,并连接到Google
修改文件:them/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_deregiter_script('jquery');
WP_REGITER_SCRIPT('jQuery',
‘http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js’,false,false,false,
‘1.4.4');
wp_enqueue_script('jquery');
}
}
add_act('init','modify_jquery');
[/PHP]
Leave a Reply