Automattic\WooCommerce\Internal\Features\ProductBlockEditor\ProductTemplates
Group::add_section
Add a section block type to this template.
Метод класса: Group{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Group = new Group(); $Group->add_section( $block_config ): SectionInterface;
- $block_config(массив) (обязательный)
- The block data.
Код Group::add_section() Group::add section WC 10.5.0
public function add_section( array $block_config ): SectionInterface {
$block = new Section( $block_config, $this->get_root_template(), $this );
return $this->add_inner_block( $block );
}