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 (name of the stylesheet to be enqueued), inline_style (string containing the CSS to be added).
Список изменений
С версии 5.3.0 | Введена. |
Код register_block_style() register block style WP 5.7
function register_block_style( $block_name, $style_properties ) {
return WP_Block_Styles_Registry::get_instance()->register( $block_name, $style_properties );
}