Automattic\WooCommerce\Blocks\Templates

ProductTagTemplate::render_block_templatepublicWC 1.0

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

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

Хуков нет.

Возвращает

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

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

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

Код ProductTagTemplate::render_block_template() WC 11.0.1

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

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