이 특정 문제에 대한 플러그인을 개발했습니다. 이 플러그인은 프론트 엔드에만로드되므로 WordPress jQuery와 혼동되지 않습니다. 참조 : WordPress 용 jQuery 관리자
왜 또 다른 jQuery 업데이터 / 관리자 / 개발자 / 디버깅 도구?
개발자 도구 중 어느 것도 특정 버전의 jQuery 및 / 또는 jQuery Migrate를 선택할 수 없기 때문입니다. 압축 축소 / 제작 및 비 압축 / 개발 버전을 모두 제공합니다. 아래 기능을 참조하십시오!
✅ 프런트 엔드에서만 실행되며 WordPress 관리자 / 백엔드 및 WP 사용자 정의 프로그램을 방해하지 않습니다 (호환성 이유로
https://core.trac.wordpress.org/ticket/45130 및
https : // core 참조). trac.wordpress.org/ticket/37110
✅ jQuery 및 / 또는 jQuery Migrate 켜기 / 끄기
✅ 특정 버전 의 jQuery 및 / 또는 jQuery Migrate 활성화
그리고 훨씬 더! 코드는 오픈 소스이므로 학습하고 배우고 기여할 수 있습니다.
거의 모든 사람이 잘못된 핸들을 사용합니다
WordPress는 실제로 jquery가 아닌 jquery-core 핸들을 사용합니다.
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을 사용하고 일부 CDN 속성을 추가 할 수 있도록 script_loader_tag 도 사용 합니다.
다음 코드를 사용할 수 있습니다.
// 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