styles = array( 'core/categories' => array( array( 'name' => 'raft-pills', 'label' => esc_html__( 'Pills', 'raft' ), ), ), ); add_action( 'init', array( $this, 'add_block_styles' ) ); } /** * Add the block styles. * * @return void */ public function add_block_styles() { foreach ( $this->styles as $block => $styles ) { foreach ( $styles as $block_style ) { register_block_style( $block, $block_style ); } } } }