[ // [ // 'name' => 'dark', // 'label' => 'Dark', // ], // [ // 'name' => 'red', // 'label' => 'Red accent', // ], // ], // // Then add CSS in assets/src/sass/block-variations/_media-text.scss: // .wp-block-media-text.is-style-dark { // background-color: #000; // color: #fff; // } // // .wp-block-media-text.is-style-red { // border-left: 4px solid #f00; // } // Register all block styles foreach ( $block_styles as $block => $styles ) { foreach ( $styles as $style ) { register_block_style( $block, $style ); } } } // end register_custom_block_styles