25% off ProSNIPC25OFF

Unregister Unwanted Core Block Styles

Removes the built-in Fill, Outline (button), Rounded (image), and decorative separator block styles to keep the editor style panel tidy.

PHPby SnipCraft
php
<?php
if ( ! function_exists( 'scseed_unregister_core_block_styles' ) ) {
    function scseed_unregister_core_block_styles() {
        unregister_block_style( 'core/button', 'fill' );
        unregister_block_style( 'core/button', 'outline' );
        unregister_block_style( 'core/image', 'rounded' );
        unregister_block_style( 'core/separator', 'wide' );
        unregister_block_style( 'core/separator', 'dots' );
    }
    add_action( 'init', 'scseed_unregister_core_block_styles' );
}
#blocks#customization#editor#gutenberg