我已经针对此特定问题开发了一个插件。该插件不会加载WordPress jQuery,因为它仅加载在前端。请参阅:WordPress的jQuery Manager
为什么还有另一个jQuery Updater / Manager / Developer / Debugging工具?
因为没有开发人员工具允许您选择特定版本的jQuery和/或jQuery Migrate。提供压缩的压缩版本/生产版本和未压缩的版本/开发版本。请参阅下面的功能!
✅只有在前端执行时,不与WordPress管理/后端和WP定制干扰(由于兼容性原因)见:
https://core.trac.wordpress.org/ticket/45130和
HTTPS://芯。 trac.wordpress.org/ticket/37110
✅ 打开/关闭 jQuery和/或jQuery的迁移
✅激活特定版本的jQuery和/或jQuery Migrate
以及更多!该代码是开源的,因此您可以学习,学习和贡献。
几乎每个人都使用不正确的句柄
WordPress实际上使用的是jquery-core句柄,而不是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' );
在jQuery的手柄只是一个别名负荷的jQuery核心与jQuery的迁移
查看关于别名的更多信息:wp_register_script多个标识符?
正确的做法
在下面的示例中,我使用https://code.jquery.com上的官方jQuery CDN,也使用script_loader_tag,以便添加一些CDN属性。
您可以使用以下代码:
// 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
到脚本标签中:matthewhorne.me/defer-async-wordpress-scripts