Summery Summery
Registers a pattern category.
Syntax Syntax
Parameters Parameters
- $category_name
-
(Required) Pattern category name.
- $category_properties
-
(Required) Array containing the properties of the category: label.
Return Return
(bool) True if the pattern was registered with success and false otherwise.
Source Source
File: wp-includes/class-wp-block-pattern-categories-registry.php
public function register( $category_name, $category_properties ) {
if ( ! isset( $category_name ) || ! is_string( $category_name ) ) {
_doing_it_wrong( __METHOD__, __( 'Block pattern category name must be a string.' ), '5.5.0' );
return false;
}
$this->registered_categories[ $category_name ] = array_merge(
array( 'name' => $category_name ),
$category_properties
);
return true;
}
Advertisement
Changelog Changelog
| Version | Description |
|---|---|
| 5.5.0 | Introduced. |