Automattic\WooCommerce\Blocks\Templates

ArchiveProductTemplatesCompatibility::is_product_collection_block_with_inherit_query()privateWC 1.0

Check if the block is a Product Collection block that inherits query from template.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

// private - только в коде основоного (родительского) класса
$result = $this->is_product_collection_block_with_inherit_query( $block );
$block(массив) (обязательный)
Parsed block data.

Код ArchiveProductTemplatesCompatibility::is_product_collection_block_with_inherit_query() WC 9.4.2

private function is_product_collection_block_with_inherit_query( $block ) {
	return 'woocommerce/product-collection' === $block['blockName'] &&
	isset( $block['attrs']['query']['inherit'] ) &&
	$block['attrs']['query']['inherit'];
}