मैंने इस विशिष्ट समस्या के लिए एक प्लगइन विकसित किया है। यह प्लगइन WordPress jQuery के साथ गड़बड़ नहीं करता है क्योंकि यह केवल फ्रंट-एंड में लोड होता है। देखें: वर्डप्रेस के लिए jQuery प्रबंधक
क्यों अभी तक एक और jQuery के अपडेटर / प्रबंधक / डेवलपर / डिबगिंग उपकरण?
क्योंकि कोई भी डेवलपर टूल आपको jQuery और / या jQuery माइग्रेट के एक विशिष्ट संस्करण का चयन करने की अनुमति नहीं देता है। संपीड़ित / उत्पादन और असम्पीडित / विकास संस्करण दोनों प्रदान करना। नीचे देखें सुविधाएँ!
✅ केवल फ्रंट-एंड में निष्पादित, वर्डप्रेस व्यवस्थापक / बैकएंड और WP कस्टमाइज़र (संगतता कारणों के लिए) के साथ हस्तक्षेप नहीं करता है देखें:
https://core.trac.wordpress.org/ticket/45130 और
https: // core। trac.wordpress.org/ticket/37110
Query jQuery और / या jQuery के माइग्रेट को चालू / बंद करें
Ate jQuery और / या jQuery के माइग्रेट के एक विशिष्ट संस्करण को सक्रिय करें
और भी बहुत कुछ! कोड खुला स्रोत है, इसलिए आप इसका अध्ययन कर सकते हैं, इससे सीख सकते हैं और योगदान कर सकते हैं।
लगभग हर कोई गलत हैंडल का उपयोग करता है
वर्डप्रेस वास्तव में jquery- कोर हैंडल का उपयोग करता है, 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