Automattic\WooCommerce\Blocks\Templates
SingleProductTemplate::init()
Initialization method.
Метод класса: SingleProductTemplate{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$SingleProductTemplate = new SingleProductTemplate(); $SingleProductTemplate->init();
Код SingleProductTemplate::init() SingleProductTemplate::init WC 9.8.5
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 ); }