WC_Post_Data::do_deferred_product_sync()public staticWC 1.0

Sync products queued to sync.

Method of the class: WC_Post_Data{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_Post_Data::do_deferred_product_sync();

WC_Post_Data::do_deferred_product_sync() code WC 8.6.1

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' ) );
	}
}