unregister_block_style( string $block_name, array $block_style_name )

Unregisters a block style.


Description Description


Parameters Parameters

$block_name

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

$block_style_name

(array) (Required) Block style name.


Top ↑

Return Return

(boolean) True if the block style was unregistered with success and false otherwise.


Top ↑

Source Source

File: wp-includes/blocks.php

function unregister_block_style( $block_name, $block_style_name ) {
	return WP_Block_Styles_Registry::get_instance()->unregister( $block_name, $block_style_name );
}

Top ↑

Changelog Changelog

Changelog
Version Description
5.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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