Skip to content

Instantly share code, notes, and snippets.

@authentikHQ
Created November 23, 2018 01:09
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 authentikHQ/b3733fe8ac55701ce81e8728a101159a to your computer and use it in GitHub Desktop.
Save authentikHQ/b3733fe8ac55701ce81e8728a101159a to your computer and use it in GitHub Desktop.
Remove Gutenberg style sheet from loading with the Genesis Framework.
<?php
// Do NOT include the opening php tag.
// Remove Gutenberg style sheet from loading.
add_action( 'wp_enqueue_scripts', 'athk_remove_gutenberg_style_sheet', 200 );
function athk_remove_gutenberg_style_sheet() {
wp_dequeue_style( 'wp-block-library' );
wp_deregister_style( 'wp-block-library' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment