extend-blocks.js 492 B

1234567891011121314151617181920
  1. /* global wp */
  2. ( function( blocks, domReady ) {
  3. var styles = [
  4. {
  5. name: "core/group",
  6. options: {
  7. name: "test",
  8. label: "Test",
  9. },
  10. },
  11. ];
  12. domReady( function() {
  13. styles.forEach ( function(style){
  14. blocks.registerBlockStyle( style.name, style.options );
  15. });
  16. blocks.unregisterBlockStyle( 'core/pullquote', 'solid-color' );
  17. });
  18. }( wp.blocks, wp.domReady ) );