register_block_pattern_category

Advertisement

Summery Summery

Registers a new pattern category.

Syntax Syntax

register_block_pattern_category( string $category_name, array $category_properties )

Parameters Parameters

$category_name

(Required) Pattern category name.

$category_properties

(Required) Array containing the properties of the category.

Return Return

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

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

Advertisement

Changelog Changelog

Changelog
Version Description
5.5.0 Introduced.

Advertisement

Leave a Reply