Skip to content

Instantly share code, notes, and snippets.

@vietrick
Created February 17, 2022 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vietrick/1a4fecd787870f94d9d5735c571fce50 to your computer and use it in GitHub Desktop.
Save vietrick/1a4fecd787870f94d9d5735c571fce50 to your computer and use it in GitHub Desktop.
Wordpress
<?php
//Xoa Gutenberg Block Library CSS khỏi Wordpress
function vietrick_remove_wp_block_library_css(){
wp_dequeue_style( 'wp-block-library' );
wp_dequeue_style( 'wp-block-library-theme' );
wp_dequeue_style( 'wc-blocks-style' ); // Remove WooCommerce block CSS
}
add_action( 'wp_enqueue_scripts', 'vietrick_remove_wp_block_library_css', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment