WP_Block_Type_Registry::is_registered() WordPress Method
The WP_Block_Type_Registry::is_registered() method returns whether a block type is registered or not.
WP_Block_Type_Registry::is_registered( string $name ) #
Checks if a block type is registered.
Parameters
- $name
(string)(Required)Block type name including namespace.
Return
(bool) True if the block type is registered, false otherwise.
Source
File: wp-includes/class-wp-block-type-registry.php
public function is_registered( $name ) {
return isset( $this->registered_block_types[ $name ] );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |