unregister_block_pattern() WordPress Function

The unregister_block_pattern() function removes a previously registered block pattern.

unregister_block_pattern( string $pattern_name ) #

Unregisters a block pattern.


Parameters

$pattern_name

(string)(Required)Block pattern name including namespace.


Top ↑

Return

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


Top ↑

Source

File: wp-includes/class-wp-block-patterns-registry.php

function unregister_block_pattern( $pattern_name ) {
	return WP_Block_Patterns_Registry::get_instance()->unregister( $pattern_name );
}


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.