티스토리 수익 글 보기
WP_Block_Type_Registry::is_registered( string $name ): bool
Checks if a block type is registered.
Parameters
$namestringrequired- Block type name including namespace.
Source
public function is_registered( $name ) {
return isset( $this->registered_block_types[ $name ] );
}
Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |
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: