Automattic\WooCommerce\Blocks\BlockTypes

ProductPrice::get_block_type_supports()protectedWC 1.0

Get block supports. Shared with the frontend. IMPORTANT: If you change anything here, make sure to update the JS file too.

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

Хуков нет.

Возвращает

Массив.

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

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

Код ProductPrice::get_block_type_supports() WC 8.7.0

protected function get_block_type_supports() {
	return array(
		'color'                  =>
		array(
			'text'       => true,
			'background' => true,
			'link'       => false,
		),
		'typography'             =>
		array(
			'fontSize'                 => true,
			'__experimentalFontWeight' => true,
			'__experimentalFontStyle'  => true,
		),
		'__experimentalSelector' => '.wp-block-woocommerce-product-price .wc-block-components-product-price',
	);
}