Skip to main content
FolksSpeakersPluginsThemesEventsSnippetsShippedCommunityResources
Login Join
Snippet · PHP

Remove Extra Block Library CSS

Shared by Yusuf mudagal · May 3, 2026 · @wp_enqueue_scripts

3 views
Back to Snippets

Dequeues the global block library stylesheet on the front end for classic themes that do not need core block styles.

add_action( 'wp_enqueue_scripts', 'wpfolks_remove_block_library_css', 100 );

function wpfolks_remove_block_library_css() {
    if ( ! is_admin() ) {
        wp_dequeue_style( 'wp-block-library' );
    }
}