/*
Theme Name:   Xstore child
Theme URI:    https://xstore.8theme.com
Description:  XStore is a multi-purpose theme that offers the ultimate WordPress and WooCommerce synergy, providing a comprehensive, all-in-one solution.
Author:       8theme
Author URI:   https://www.8theme.com
Template:     xstore
Version:      1.0
Text Domain:  xstore-child
Tags: e-commerce, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, custom-logo, featured-images, full-width-template, threaded-comments, accessibility-ready, rtl-language-support, footer-widgets, sticky-post, theme-options, translation-ready, ecommerce, woocommerce, shop, elementor, business, corporate, blog, news, light, dark
*/
/**
 * 彻底卸载特定页面的所有主题和插件样式
 */
add_action('wp_enqueue_scripts', 'kill_all_styles_on_stitch_page', 9999);
function kill_all_styles_on_stitch_page() {
    // 这里的数字 123 换成你那个 test 页面的 ID (编辑页面时网址里 post= 后面的数字)
    if ( is_page( 2321 ) ) {
        global $wp_styles;
        // 循环卸载所有已排队的 CSS 样式表
        foreach( $wp_styles->queue as $handle ) {
            wp_dequeue_style( $handle );
            wp_deregister_style( $handle );
        }
    }
}