以下をfunction.phpに記述

function load_google_cdn() {
  if ( !is_admin() ){
    wp_deregister_script( 'jquery' );
    wp_enqueue_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js', array(), NULL, true );
  }
}
add_action( 'init', 'load_google_cdn' );

latest post

0