Automattic\WooCommerce\Blocks\Templates

ProductBrandTemplate::render_block_templatepublicWC 1.0

Run template-specific logic when the query matches this template.

Method of the class: ProductBrandTemplate{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ProductBrandTemplate = new ProductBrandTemplate();
$ProductBrandTemplate->render_block_template();

ProductBrandTemplate::render_block_template() code WC 11.0.1

public function render_block_template() {
	if ( ! is_embed() && is_product_taxonomy() && is_tax( 'product_brand' ) ) {
		$compatibility_layer = new ArchiveProductTemplatesCompatibility();
		$compatibility_layer->init();

		add_filter( 'woocommerce_has_block_template', '__return_true', 10, 0 );
	}
}