从产品页中批量卸载Elementor插件

Elementor插件加载在woocommerce产品页面时,导致产品主图相册需要等到整个页面的图片都加载完后才显示

add_action('wp_enqueue_scripts', function() {
    // 仅在产品页 & 未用 Elementor 构建的产品中卸载 Elementor 前端资源
    if (is_singular('product') && function_exists('elementor_load_plugin_textdomain') && 
        ! \Elementor\Plugin::$instance->db->is_built_with_elementor(get_the_ID())) {
        
        // 移除 Elementor 样式
        wp_dequeue_style('elementor-frontend');
        wp_dequeue_style('elementor-post-' . get_the_ID());  // 单篇特定样式
        wp_dequeue_style('elementor-icons');

        // 移除 Elementor 脚本
        wp_dequeue_script('elementor-frontend');
        wp_dequeue_script('elementor-waypoints');
        wp_dequeue_script('elementor-sticky');
        wp_dequeue_script('elementor-dialog');
    }
}, 100);