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`. See WP_Block_Type::__construct() for information on accepted arguments. Default empty array.
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.