You appear to be a bot. Output may be restricted
Description
Loops through each registered lazy data callback and adds the returned value to the data array.
This method is executed right before preparing the data for printing to the rendered screen.
Usage
$void = AssetDataRegistry::execute_lazy_data();
Parameters
Returns
void
Source
File name: woocommerce/packages/woocommerce-blocks/src/Assets/AssetDataRegistry.php
Lines:
1 to 5 of 5
protected function execute_lazy_data() { foreach ( $this->lazy_data as $key => $callback ) { $this->data[ $key ] = $callback(); } }