mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
4 lines
200 B
Text
4 lines
200 B
Text
function dequeue_woocommerce_block_styles() {
|
|
wp_dequeue_style('wc-blocks-style'); // Dequeues WooCommerce block styles
|
|
}
|
|
add_action('wp_enqueue_scripts', 'dequeue_woocommerce_block_styles', 100)
|