Automattic\WooCommerce\Blocks\Templates

ProductAttributeTemplate::init()publicWC 1.0

Initialization method.

Method of the class: ProductAttributeTemplate{}

No Hooks.

Return

null. Nothing (null).

Usage

$ProductAttributeTemplate = new ProductAttributeTemplate();
$ProductAttributeTemplate->init();

ProductAttributeTemplate::init() code WC 9.3.3

public function init() {
	add_action( 'template_redirect', array( $this, 'render_block_template' ) );
	add_filter( 'taxonomy_template_hierarchy', array( $this, 'update_taxonomy_template_hierarchy' ), 1, 3 );
}