Skip to content

Instantly share code, notes, and snippets.

@rdbinteractive
Last active January 22, 2019 15:04
Show Gist options
  • Save rdbinteractive/94a53b74d2d05c3655695b48fcee23e0 to your computer and use it in GitHub Desktop.
Save rdbinteractive/94a53b74d2d05c3655695b48fcee23e0 to your computer and use it in GitHub Desktop.
Dequeue Gutenberg block styling on the front end.
<?php
/**
* Dequeue Gutenberg block styling on the front end.
*/
if(!is_admin()) :
add_action('wp_enqueue_scripts', 'dequeueGutenStyle');
function dequeueGutenStyle()
{
wp_dequeue_style('wp-block-library');
}
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment