Skip to content

Instantly share code, notes, and snippets.

@lagenceoueb
Last active April 7, 2022 07:29
Show Gist options
  • Save lagenceoueb/5b3c988d584eefa964ca10574db5acfa to your computer and use it in GitHub Desktop.
Save lagenceoueb/5b3c988d584eefa964ca10574db5acfa to your computer and use it in GitHub Desktop.
Retirer le style natif Gutenberg (wp 5.9 )
<?php
/**
* Remove default style (Geutenberg preset) in WordPress 5.9 theme
**/
add_action( 'wp_enqueue_scripts', function(){
wp_dequeue_style( 'global-styles' );
}, 100 );
@lagenceoueb
Copy link
Author

Remove Gutenberg preset (WP 5.9)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment