register_block_type
register_block_type ( $name, $args = array() )
Parameters:- (string|WP_Block_Type) name Block type name including namespace, or alternatively a complete WP_Block_Type instance. In case a WP_Block_Type is provided, the $args parameter will be ignored.
- (array) args { Optional. Array of block type arguments. Accepts any public property of `WP_Block_Type`. Any arguments may be defined, however the ones described below are supported by default. Default empty array. @type callable $render_callback Callback used to render blocks of this block type. }
Returns:- (WP_Block_Type|false) The registered block type on success, or false on failure.
Defined at: - Introduced in WordPress: 5.0.0
- Deprecated in WordPress: —
Description
Registers a block type.