WP_Block_List::offsetUnset()publicWP 5.5.0ReturnTypeWillChange

Unset a block.

Method of the class: WP_Block_List{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Block_List = new WP_Block_List();
$WP_Block_List->offsetUnset( $offset );
$offset(string) (required)
Offset of block value to unset.

Changelog

Since 5.5.0 Introduced.

WP_Block_List::offsetUnset() code WP 6.5.2

public function offsetUnset( $offset ) {
	unset( $this->blocks[ $offset ] );
}