register_block_pattern_category( string $category_name, array $category_properties ): bool

Registers a new pattern category.

Parameters

$category_namestringrequired
Pattern category name including namespace.
$category_propertiesarrayrequired
List of properties for the block pattern.
See WP_Block_Pattern_Categories_Registry::register() for accepted arguments.

Return

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

Source

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

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.