register_block_pattern_category() WordPress Function

The register_block_pattern_category() function is used to register a new block pattern category.

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)List of properties for the block pattern. See WP_Block_Pattern_Categories_Registry::register() for accepted arguments.


Top ↑

Return

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


Top ↑

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 );
}


Top ↑

Changelog

Changelog
VersionDescription
5.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.