WC_Post_Data::do_deferred_product_sync()public staticWC 1.0

Sync products queued to sync.

Метод класса: WC_Post_Data{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = WC_Post_Data::do_deferred_product_sync();

Код WC_Post_Data::do_deferred_product_sync() WC 8.7.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' ) );
	}
}