WP_Block_Styles_Registry::unregister( 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/class-wp-block-styles-registry.php

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

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

		return true;
	}


Top ↑

User Contributed Notes User Contributed Notes

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