WC_Post_Data::do_deferred_product_sync()
Sync products queued to sync.
Contents
Description Description
Source Source
File: includes/class-wc-post-data.php
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' ) ); } }