Automattic\WooCommerce\Blocks\BlockTypes

ProductCategory::get_block_type_attributes()protectedWC 1.0

Get block attributes.

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

Хуков нет.

Возвращает

Массив.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_block_type_attributes();

Код ProductCategory::get_block_type_attributes() WC 8.7.0

protected function get_block_type_attributes() {
	return array_merge(
		parent::get_block_type_attributes(),
		array(
			'className' => $this->get_schema_string(),
			'orderby'   => $this->get_schema_orderby(),
			'editMode'  => $this->get_schema_boolean( true ),
		)
	);
}