WC_Post_Data::do_deferred_product_sync
Sync products queued to sync.
Method of the class: WC_Post_Data{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = WC_Post_Data::do_deferred_product_sync();
WC_Post_Data::do_deferred_product_sync() WC Post Data::do deferred product sync code WC 10.5.0
public static function do_deferred_product_sync() {
global $wc_deferred_product_sync;
if ( ! empty( $wc_deferred_product_sync ) ) {
$wc_deferred_product_sync = wp_parse_id_list( $wc_deferred_product_sync );
array_walk( $wc_deferred_product_sync, array( __CLASS__, 'deferred_product_sync' ) );
}
}