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 9.7.1
public function add_section( array $block_config ): SectionInterface { $block = new Section( $block_config, $this->get_root_template(), $this ); return $this->add_inner_block( $block ); }