Automattic\WooCommerce\Blocks\BlockTypes
CheckoutActionsBlock::initialize()
Initialize this block type.
- Hook into WP lifecycle.
- Register the block with WordPress.
Method of the class: CheckoutActionsBlock{}
No Hooks.
Return
null
. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->initialize();
CheckoutActionsBlock::initialize() CheckoutActionsBlock::initialize code WC 9.6.0
protected function initialize() { parent::initialize(); add_action( 'wp_loaded', array( $this, 'register_style_variations' ) ); }