register_block_style( string $block_name, array $style_properties )

Registers a new block style.


Description Description


Parameters Parameters

$block_name

(string) (Required) Block type name including namespace.

$style_properties

(array) (Required) Array containing the properties of the style name, label, style (name of the stylesheet to be enqueued), inline_style (string containing the CSS to be added).


Top ↑

Return Return

(boolean) True if the block style was registered with success and false otherwise.


Top ↑

Source Source

File: wp-includes/blocks.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
5.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.