<?php
/**
* Block Styles
*/
if ( function_exists( 'register_block_style' ) ) {
/**
* Register block styles.
*/
function blogrank_register_block_styles() {
// Image: Borders.
register_block_style(
'core/image',
array(
'name' => 'blogrank-border',
'label' => esc_html__( 'Borders', 'blogrank' ),
)
);
}
add_action( 'init', 'blogrank_register_block_styles' );
}