Preview:
/**
 * Полное удаление jQuery Migrate (Фронтенд + Админка)
 */
add_action('wp_default_scripts', function($scripts) {
    // Убираем проверку !is_admin(), чтобы работало везде
    if (!empty($scripts->registered['jquery'])) {
        $jquery_dependencies = $scripts->registered['jquery']->deps;
        
        // Удаляем 'jquery-migrate' из списка зависимостей
        $scripts->registered['jquery']->deps = array_diff(
            $jquery_dependencies, 
            array('jquery-migrate')
        );
    }
});

/**
 * Дополнительная очистка: предотвращаем саму загрузку скрипта, 
 * если он был вызван напрямую другим плагином
 */
add_action('wp_enqueue_scripts', 'custom_remove_migrate_completely', 999);
add_action('admin_enqueue_scripts', 'custom_remove_migrate_completely', 999);

function custom_remove_migrate_completely() {
    wp_dequeue_script('jquery-migrate');
    wp_deregister_script('jquery-migrate');
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter