register_block_style()
Registers a new block style.
No Hooks.
Return
true|false
. True if the block style was registered with success and false otherwise.
Usage
register_block_style( $block_name, $style_properties );
- $block_name(string|string[]) (required)
- Block type name including namespace or array of namespaced block type names.
- $style_properties(array) (required)
- 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), style_data (theme.json-like array to generate CSS from). See WP_Block_Styles_Registry::register().
Changelog
Since 5.3.0 | Introduced. |
Since 6.6.0 | Added support for registering styles for multiple block types. |
register_block_style() register block style code WP 6.7.1
function register_block_style( $block_name, $style_properties ) { return WP_Block_Styles_Registry::get_instance()->register( $block_name, $style_properties ); }