WP_Block_List::offsetSet( $offset,  $value )

Source

public function offsetSet( $offset, $value ) {
	if ( is_null( $offset ) ) {
		$this->blocks[] = $value;
	} else {
		$this->blocks[ $offset ] = $value;
	}
}

User Contributed Notes

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