Automattic\WooCommerce\Internal\Features\ProductBlockEditor\ProductTemplates
Section::add_section()
Устарела с версии 8.6.0. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Add a sub-section block type to this template.
Метод класса: Section{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Section = new Section(); $Section->add_section( $block_config ): SubsectionInterface;
- $block_config(массив) (обязательный)
- The block data.
Список изменений
Устарела с | 8.6.0 |
Код Section::add_section() Section::add section WC 9.7.1
public function add_section( array $block_config ): SubsectionInterface { wc_deprecated_function( 'add_section', '8.6.0', 'add_subsection' ); return $this->add_subsection( $block_config ); }