WP_Block_Type_Registry::is_registered( string $name )
Checks if a block type is registered.
Parameters Parameters
- $name
-
(string) (Required) Block type name including namespace.
Return Return
(bool) True if the block type is registered, false otherwise.
Source 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 code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
5.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Used in a theme or plugin to check whether a particular block (core or custom) is registered: