jQuery
// Register Script function custom_scripts() { wp_deregister_script( 'jQuery' ); wp_register_script( 'jQuery', 'https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js', false, '3.2.1', false ); wp_enqueue_script( 'jQuery' ); } add_action( 'wp_enqueue_scripts', 'custom_scripts' );