get( 'Version' ) ); } add_action( 'wp_enqueue_scripts', 'baselayer_enqueue_stylesheet_script' ); /** * Register block styles. */ function baselayer_register_block_styles() { $block_styles = array( 'core/social-links' => array( 'outline' => __( 'Outline', 'baselayer' ), ), ); foreach ( $block_styles as $block => $styles ) { foreach ( $styles as $style_name => $style_label ) { register_block_style( $block, array( 'name' => $style_name, 'label' => $style_label, ) ); } } } add_action( 'init', 'baselayer_register_block_styles' );