unregister_block_pattern_category( string $category_name ): bool

In this article

Unregisters a pattern category.

Parameters

$category_namestringrequired
Pattern category name including namespace.

Return

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

Source

function unregister_block_pattern_category( $category_name ) {
	return WP_Block_Pattern_Categories_Registry::get_instance()->unregister( $category_name );
}

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

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