unregister_block_pattern( string $pattern_name ): bool
Unregisters a block pattern.
Parameters
-
$pattern_name
string Required -
Block pattern name including namespace.
Return
bool True if the pattern was unregistered with success and false otherwise.
Source
File: wp-includes/class-wp-block-patterns-registry.php
.
View all references
function unregister_block_pattern( $pattern_name ) {
return WP_Block_Patterns_Registry::get_instance()->unregister( $pattern_name );
}
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
Example code to remove pattern,
Example code to remove specific patterns registered in core,