register_block_style()WP 5.3.0

Registers a new block style.

Хуков нет.

Возвращает

true|false. True if the block style was registered with success and false otherwise.

Использование

register_block_style( $block_name, $style_properties );
$block_name(строка) (обязательный)
Block type name including namespace.
$style_properties(массив) (обязательный)
Array containing the properties of the style name, label, style_handle (name of the stylesheet to be enqueued), inline_style (string containing the CSS to be added). See WP_Block_Styles_Registry::register().

Список изменений

С версии 5.3.0 Введена.

Код register_block_style() WP 6.5.2

function register_block_style( $block_name, $style_properties ) {
	return WP_Block_Styles_Registry::get_instance()->register( $block_name, $style_properties );
}