Automattic\WooCommerce\Internal\Admin\BlockTemplates

BlockTemplate::add_blockpublicWC 1.0

Add an inner block to this template.

Метод класса: BlockTemplate{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$BlockTemplate = new BlockTemplate();
$BlockTemplate->add_block( $block_config ): BlockInterface;
$block_config(массив) (обязательный)
The block data.

Код BlockTemplate::add_block() WC 10.3.4

public function add_block( array $block_config ): BlockInterface {
	$block = new Block( $block_config, $this->get_root_template(), $this );
	return $this->add_inner_block( $block );
}