Automattic\WooCommerce\Blocks\Templates
SingleProductTemplate::init()
Initialization method.
Method of the class: SingleProductTemplate{}
No Hooks.
Return
null
. Nothing (null).
Usage
$SingleProductTemplate = new SingleProductTemplate(); $SingleProductTemplate->init();
SingleProductTemplate::init() SingleProductTemplate::init code WC 9.7.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 ); }