On this page
unregister_block_pattern( string $pattern_name ): bool
Unregisters a block pattern.
Parameters
$pattern_namestring 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 );
}
Related
Uses
| Uses | Description |
|---|---|
| WP_Block_Patterns_Registry::get_instance() wp-includes/class-wp-block-patterns-registry.php | Utility method to retrieve the main instance of the class. |
Changelog
| Version | Description |
|---|---|
| 5.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/unregister_block_pattern