mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-24 05:09:10 +08:00
21 lines
500 B
PHP
21 lines
500 B
PHP
<?php
|
|
|
|
/*
|
|
* Plugin Name: Never enqueue jQuery Migrate before WordPress 5.5
|
|
* Plugin URI: https://github.com/szepeviktor/wordpress-website-lifecycle
|
|
*/
|
|
|
|
add_action(
|
|
'wp_default_scripts',
|
|
static function ($scripts) {
|
|
if (is_admin() || ! isset($scripts->registered['jquery'])) {
|
|
return;
|
|
}
|
|
$scripts->registered['jquery']->deps = array_diff(
|
|
$scripts->registered['jquery']->deps,
|
|
['jquery-migrate']
|
|
);
|
|
},
|
|
10,
|
|
1
|
|
);
|