GoogleからjQueryを使う

GoogleからjQueryを使う

トラフィックのため、画像やフラッシュファイルは別のサーバーに移動し、リンクしました。

サーフィン中に以下のコードを発見し、Googleに接続しました。

修正したファイル: テーマ/functions.php

[PHP]
//Google API用のjQuery
function modify_jquery()
{
if (!is_admin())
{
// 次の2行をコメントアウトすると、ローカルの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]

Leave a Reply

이메일 주소는 공개되지 않습니다. (* 질문, 건의사항 등은 "질문게시판"을 이용해주세요)