Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created February 5, 2019 22:42
Show Gist options
  • Save billerickson/6bf391d39e455e4765c7a88d3c8352ee to your computer and use it in GitHub Desktop.
Save billerickson/6bf391d39e455e4765c7a88d3c8352ee to your computer and use it in GitHub Desktop.
wp.domReady( () => {
wp.blocks.unregisterBlockStyle( 'core/button', 'default' );
wp.blocks.unregisterBlockStyle( 'core/button', 'outline' );
wp.blocks.unregisterBlockStyle( 'core/button', 'squared' );
wp.blocks.registerBlockStyle( 'core/button', {
name: 'tp-default',
label: 'Default',
});
wp.blocks.registerBlockStyle( 'core/button', {
name: 'full-width',
label: 'Full Width',
} );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment