Automattic\WooCommerce\Blocks\Templates
SingleProductTemplate::init
Initialization method.
Method of the class: SingleProductTemplate{}
No Hooks.
Returns
null. Nothing (null).
Usage
$SingleProductTemplate = new SingleProductTemplate(); $SingleProductTemplate->init();
SingleProductTemplate::init() SingleProductTemplate::init code WC 10.8.1
public function init() {
add_action( 'template_redirect', array( $this, 'render_block_template' ) );
add_filter( 'get_block_templates', array( $this, 'update_single_product_content' ), 11, 1 );
}