123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * Quadrat Theme: Block Styles
- *
- * @package Seedlet
- * @since 1.0.0
- */
- if ( ! function_exists( 'quadrat_register_block_styles' ) ) :
- function quadrat_register_block_styles() {
- if ( function_exists( 'register_block_style' ) ) {
- /**
- * Register block styles
- */
- register_block_style(
- 'core/cover',
- array(
- 'name' => 'quadrat-cover-diamond',
- 'label' => __( 'Diamond', 'quadrat' ),
- 'style_handle' => 'quadrat-cover-diamond',
- )
- );
- register_block_style(
- 'core/query',
- array(
- 'name' => 'quadrat-diamond-posts',
- 'label' => __( 'Diamond Posts', 'quadrat' ),
- 'style_handle' => 'quadrat-diamond-posts',
- )
- );
- }
- }
- endif;
- add_action( 'after_setup_theme', 'quadrat_register_block_styles' );
|