register_block_pattern_category( string $category_name, array $category_properties )

Registers a new pattern category.

Parameters

$category_name

(string) (Required) Pattern category name including namespace.

$category_properties

(array) (Required) Array containing the properties of the category.

Return

(bool) True if the pattern category was registered with success and false otherwise.

Source

File: wp-includes/class-wp-block-pattern-categories-registry.php

function register_block_pattern_category( $category_name, $category_properties ) {
	return WP_Block_Pattern_Categories_Registry::get_instance()->register( $category_name, $category_properties );
}

Changelog

Version Description
5.5.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/register_block_pattern_category