Skip to content

Instantly share code, notes, and snippets.

@erikasarti
Created January 9, 2019 17:36
Show Gist options
  • Save erikasarti/4dbf9ef33faa7afc1e451766dfc6471e to your computer and use it in GitHub Desktop.
Save erikasarti/4dbf9ef33faa7afc1e451766dfc6471e to your computer and use it in GitHub Desktop.
Como remover o CSS de blocos do WordPress Gutenberg
function erikasarti_dequeue_css() {
wp_dequeue_style( 'wp-block-library' );
}
add_action( 'wp_enqueue_scripts', 'erikasarti_dequeue_css', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment