Created
January 9, 2019 17:36
-
-
Save erikasarti/4dbf9ef33faa7afc1e451766dfc6471e to your computer and use it in GitHub Desktop.
Como remover o CSS de blocos do WordPress Gutenberg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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