וורדפרס טוענת jQuery Migrate לצורך תאימות לאחור. אם האתר והתוספים שלכם תומכים ב-jQuery עדכני, ניתן להסיר את Migrate ולחסוך בקשה HTTP. הוסיפו ל-functions.php. לעוד על אופטימיזציית ביצועים.
add_action( 'wp_default_scripts', function( $scripts ) {
if ( ! is_admin() && isset( $scripts->registered['jquery'] ) ) {
$script = $scripts->registered['jquery'];
if ( $script->deps ) {
$script->deps = array_diff( $script->deps, array( 'jquery-migrate' ) );
}
}
} );