How To Load Google CDN jQuery In Your WordPress Theme
1 2 3 4 5 6 |
add_action( 'wp_enqueue_scripts', 'register_jquery' ); function register_jquery() { wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', ( 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js' ), false, null, true ); wp_enqueue_script( 'jquery' ); } |