editor.js 553 B

1234567891011121314151617181920212223
  1. wp.domReady( () => {
  2. wp.blocks.unregisterBlockStyle( 'core/button', ['default', 'outline', 'squared', 'fill'] );
  3. wp.blocks.registerBlockStyle( 'core/button', [
  4. {
  5. name: 'bootstrap-outline-secondary',
  6. label: 'Purple Outline',
  7. isDefault: true
  8. },
  9. {
  10. name: 'bootstrap-secondary',
  11. label: 'Purple Solid'
  12. },
  13. {
  14. name: 'bootstrap-outline-primary',
  15. label: 'Green Outline'
  16. },
  17. {
  18. name: 'bootstrap-primary',
  19. label: 'Green Solid'
  20. }
  21. ]
  22. );
  23. });