You appear to be a bot. Output may be restricted
Description
Registers the block type with WordPress.
Usage
AbstractBlock::register_block_type();
Parameters
Returns
void
Source
File name: woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractBlock.php
Lines:
1 to 14 of 14
protected function register_block_type() { register_block_type( $this->get_block_type(), array( 'render_callback' => $this->get_block_type_render_callback(), 'editor_script' => $this->get_block_type_editor_script( 'handle' ), 'editor_style' => $this->get_block_type_editor_style(), 'style' => $this->get_block_type_style(), 'attributes' => $this->get_block_type_attributes(), 'supports' => $this->get_block_type_supports(), ) ); }