WP_Block_Styles_Registry::unregister()publicWP 5.3.0

Unregisters a block style of the given block type.

Method of the class: WP_Block_Styles_Registry{}

No Hooks.

Return

true|false. True if the block style was unregistered with success and false otherwise.

Usage

$WP_Block_Styles_Registry = new WP_Block_Styles_Registry();
$WP_Block_Styles_Registry->unregister( $block_name, $block_style_name );
$block_name(string) (required)
Block type name including namespace.
$block_style_name(string) (required)
Block style name.

Changelog

Since 5.3.0 Introduced.

WP_Block_Styles_Registry::unregister() code WP 6.5.2

public function unregister( $block_name, $block_style_name ) {
	if ( ! $this->is_registered( $block_name, $block_style_name ) ) {
		_doing_it_wrong(
			__METHOD__,
			/* translators: 1: Block name, 2: Block style name. */
			sprintf( __( 'Block "%1$s" does not contain a style named "%2$s".' ), $block_name, $block_style_name ),
			'5.3.0'
		);
		return false;
	}

	unset( $this->registered_block_styles[ $block_name ][ $block_style_name ] );

	return true;
}