Skip to content

Instantly share code, notes, and snippets.

View otvoslaszlogabriel's full-sized avatar

Otvos Laszlo Gabriel otvoslaszlogabriel

  • 22:22 (UTC +03:00)
View GitHub Profile
@otvoslaszlogabriel
otvoslaszlogabriel / functions.php
Created January 19, 2023 10:10 — forked from lukecav/functions.php
Replace the default WordPress jQuery with Google Library hosted version
add_action( ‘wp_enqueue_scripts’, ‘register_jquery’ );
function register_jquery() {
if (!is_admin()) {
wp_deregister_script(‘jquery-core’);
wp_register_script(‘jquery-core’, ‘https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js’, true, ‘1.11.3’);
wp_enqueue_script(‘jquery-core’);
wp_deregister_script(‘jquery-migrate’);
wp_register_script(‘jquery-migrate’, ‘http://cdn.yourdomain.com/wp-includes/js/jquery/jquery-migrate.min.js’, true, ‘1.2.1’);
wp_enqueue_script(‘jquery-migrate’);
}
@otvoslaszlogabriel
otvoslaszlogabriel / functions.php
Created January 19, 2023 10:10 — forked from lukecav/functions.php
Replace the default WordPress jQuery with Google Library hosted version
add_action( ‘wp_enqueue_scripts’, ‘register_jquery’ );
function register_jquery() {
if (!is_admin()) {
wp_deregister_script(‘jquery-core’);
wp_register_script(‘jquery-core’, ‘https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js’, true, ‘1.11.3’);
wp_enqueue_script(‘jquery-core’);
wp_deregister_script(‘jquery-migrate’);
wp_register_script(‘jquery-migrate’, ‘http://cdn.yourdomain.com/wp-includes/js/jquery/jquery-migrate.min.js’, true, ‘1.2.1’);
wp_enqueue_script(‘jquery-migrate’);
}