Ho sviluppato un plugin per questo problema specifico. Questo plugin non scherza con WordPress jQuery in quanto viene caricato solo nel front-end. Vedi: jQuery Manager per WordPress
Perché ancora un altro strumento di aggiornamento / gestione / sviluppo / debug di jQuery?
Poiché nessuno degli strumenti di sviluppo consente di selezionare una versione specifica di jQuery e / o jQuery Migrate. Fornisce sia la versione compressa / ridotta sia la versione non compressa / di sviluppo. Vedi le caratteristiche di seguito!
✅ Eseguito solo nel front-end, non interferisce con admin / backend WordPress e personalizzatore WP (per motivi di compatibilità) Vedi:
https://core.trac.wordpress.org/ticket/45130 e
https: // core. trac.wordpress.org/ticket/37110
✅ Attiva / disattiva jQuery e / o jQuery Migrate
✅ Attivare una versione specifica di jQuery e / o jQuery Migrate
E altro ancora! Il codice è open source, quindi puoi studiarlo, imparare da esso e contribuire.
Quasi tutti usano l'handle errato
WordPress utilizza effettivamente l'handle jquery-core, non jquery:
https://github.com/WordPress/WordPress/blob/f84ab5e19f0038a3abec71821c9b8f47a4272942/wp-includes/script-loader.php#L1017
// jQuery
$scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '1.12.4-wp' );
$scripts->add( 'jquery-core', '/wp-includes/js/jquery/jquery.js', array(), '1.12.4-wp' );
$scripts->add( 'jquery-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '1.4.1' );
L' handle jquery è solo un alias per caricare jquery-core con jquery-migrate
Ulteriori informazioni sugli alias: wp_register_script identificatori multipli?
Il modo corretto di farlo
Nel mio esempio di seguito uso il CDN jQuery ufficiale su https://code.jquery.com Uso anche script_loader_tag in modo da poter aggiungere alcuni attributi CDN.
È possibile utilizzare il seguente codice:
// Front-end not excuted in the wp admin and the wp customizer (for compatibility reasons)
// See: https://core.trac.wordpress.org/ticket/45130 and https://core.trac.wordpress.org/ticket/37110
function wp_jquery_manager_plugin_front_end_scripts() {
$wp_admin = is_admin();
$wp_customizer = is_customize_preview();
// jQuery
if ( $wp_admin || $wp_customizer ) {
// echo 'We are in the WP Admin or in the WP Customizer';
return;
}
else {
// Deregister WP core jQuery, see https://github.com/Remzi1993/wp-jquery-manager/issues/2 and https://github.com/WordPress/WordPress/blob/91da29d9afaa664eb84e1261ebb916b18a362aa9/wp-includes/script-loader.php#L226
wp_deregister_script( 'jquery' ); // the jquery handle is just an alias to load jquery-core with jquery-migrate
// Deregister WP jQuery
wp_deregister_script( 'jquery-core' );
// Deregister WP jQuery Migrate
wp_deregister_script( 'jquery-migrate' );
// Register jQuery in the head
wp_register_script( 'jquery-core', 'https://code.jquery.com/jquery-3.3.1.min.js', array(), null, false );
/**
* Register jquery using jquery-core as a dependency, so other scripts could use the jquery handle
* see /wordpress/283828/wp-register-script-multiple-identifiers
* We first register the script and afther that we enqueue it, see why:
* /wordpress/82490/when-should-i-use-wp-register-script-with-wp-enqueue-script-vs-just-wp-enque
* /programming/39653993/what-is-diffrence-between-wp-enqueue-script-and-wp-register-script
*/
wp_register_script( 'jquery', false, array( 'jquery-core' ), null, false );
wp_enqueue_script( 'jquery' );
}
}
add_action( 'wp_enqueue_scripts', 'wp_jquery_manager_plugin_front_end_scripts' );
function add_jquery_attributes( $tag, $handle ) {
if ( 'jquery-core' === $handle ) {
return str_replace( "type='text/javascript'", "type='text/javascript' integrity='sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=' crossorigin='anonymous'", $tag );
}
return $tag;
}
add_filter( 'script_loader_tag', 'add_jquery_attributes', 10, 2 );
defer
ai tag di script: matthewhorne.me/defer-async-wordpress-scripts