WP_Block_Patterns_Registry::is_registered() WordPress Method
The WP_Block_Patterns_Registry::is_registered() method allows you to check if a given block pattern is registered.
WP_Block_Patterns_Registry::is_registered( string $pattern_name ) #
Checks if a block pattern is registered.
Parameters
- $pattern_name
(string)(Required)Block pattern name including namespace.
Return
(bool) True if the pattern is registered, false otherwise.
Source
File: wp-includes/class-wp-block-patterns-registry.php
public function is_registered( $pattern_name ) { return isset( $this->registered_patterns[ $pattern_name ] ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |